summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2011-05-05 09:21:19 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2011-05-05 09:22:01 -0700
commit7196c9441af941be74180f8e8d4e10a08659b80f (patch)
tree08fae115f68afa94196a04da5897741a5334909f
parentf5403828c68af0f12c79c0504df0a4781ca84b2b (diff)
downloadxorg-proto-glproto-7196c9441af941be74180f8e8d4e10a08659b80f.tar.gz
Revert "glxproto: make GLX swap event struct match spec"
This reverts commit f5403828c68af0f12c79c0504df0a4781ca84b2b. This broke compatibility with existing code, so revert in favor of a new struct definition instead.
-rw-r--r--glxproto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/glxproto.h b/glxproto.h
index dfa0647..0ff44e3 100644
--- a/glxproto.h
+++ b/glxproto.h
@@ -1375,13 +1375,13 @@ typedef struct {
BYTE pad;
CARD16 sequenceNumber B16;
CARD16 event_type B16;
- CARD16 pad2;
CARD32 drawable;
CARD32 ust_hi B32;
CARD32 ust_lo B32;
CARD32 msc_hi B32;
CARD32 msc_lo B32;
- CARD32 sbc B32;
+ CARD32 sbc_hi B32;
+ CARD32 sbc_lo B32;
} xGLXBufferSwapComplete;
/************************************************************************/