diff options
author | Jesse Barnes <jbarnes@jbarnes-desktop.localdomain> | 2009-11-12 15:26:40 +0000 |
---|---|---|
committer | Jesse Barnes <jbarnes@jbarnes-desktop.localdomain> | 2009-11-12 15:26:40 +0000 |
commit | 7c7e9bbf4ab6177e9623f3c4d667ed83789167b4 (patch) | |
tree | 0433c276864c9b36f540873f7efcca46caa344a7 /dri2proto.h | |
parent | f9e6b17debd2f69821bd8d412cccf02dd9ba17af (diff) |
Add DRI2 event support for DRI2BufferSwapComplete
Diffstat (limited to 'dri2proto.h')
-rw-r--r-- | dri2proto.h | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/dri2proto.h b/dri2proto.h index 377bdb9..43152c2 100644 --- a/dri2proto.h +++ b/dri2proto.h @@ -38,8 +38,8 @@ #define DRI2_MINOR 2 #define DRI2NumberErrors 0 -#define DRI2NumberEvents 0 -#define DRI2NumberRequests 8 +#define DRI2NumberEvents 1 +#define DRI2NumberRequests 13 #define X_DRI2QueryVersion 0 #define X_DRI2Connect 1 @@ -55,6 +55,11 @@ #define X_DRI2WaitSBC 11 #define X_DRI2SwapInterval 12 +/* + * Events + */ +#define DRI2_BufferSwapComplete 0 + typedef struct { CARD32 attachment B32; CARD32 name B32; @@ -279,4 +284,19 @@ typedef struct { } xDRI2SwapIntervalReq; #define sz_xDRI2SwapIntervalReq 12 +typedef struct { + CARD8 type; + CARD8 pad; + CARD16 sequenceNumber B16; + CARD16 event_type B16; + CARD32 drawable B32; + CARD32 ust_hi B32; + CARD32 ust_lo B32; + CARD32 msc_hi B32; + CARD32 msc_lo B32; + CARD32 sbc_hi B32; + CARD32 sbc_lo B32; +} xDRI2BufferSwapComplete; +#define sz_xDRI2BufferSwapComplete 32 + #endif |