diff options
author | Keith Packard <keithp@keithp.com> | 2008-03-13 21:31:12 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-11-24 13:24:36 -0800 |
commit | e3d6f279d5c305dfb81ca109fbfb665870712d2f (patch) | |
tree | bc08da754654f5858bd212a99f085a735e49c6fe /randr/rrdispatch.c | |
parent | ff9d1cd843a9b0aba69a3d788b21d5f6af702590 (diff) |
Wire up RandR CRTC transform protocol, bump server to RandR 1.3
This involved removing a pile of matrix code from the DDX,
as well as moving a bit of transform logic from DDX to DIX.
Diffstat (limited to 'randr/rrdispatch.c')
-rw-r--r-- | randr/rrdispatch.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/randr/rrdispatch.c b/randr/rrdispatch.c index 72c68e3fb..20b471c09 100644 --- a/randr/rrdispatch.c +++ b/randr/rrdispatch.c @@ -23,7 +23,7 @@ #include "randrstr.h" #define SERVER_RANDR_MAJOR 1 -#define SERVER_RANDR_MINOR 2 +#define SERVER_RANDR_MINOR 3 Bool RRClientKnowsRates (ClientPtr pClient) @@ -211,5 +211,8 @@ int (*ProcRandrVector[RRNumberRequests])(ClientPtr) = { ProcRRGetCrtcGammaSize, /* 22 */ ProcRRGetCrtcGamma, /* 23 */ ProcRRSetCrtcGamma, /* 24 */ +/* V1.3 additions */ + ProcRRSetCrtcTransform, /* 25 */ + ProcRRGetCrtcTransform, /* 26 */ }; |