diff options
author | marha <marha@users.sourceforge.net> | 2011-05-12 10:54:06 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-05-12 10:54:06 +0000 |
commit | 6355693a021ce9473196b685cc9f8c2cbb0899a8 (patch) | |
tree | d781e4e3e935e9b3b9be7aff2a2952269b33e12a /libxcb/xcb-proto | |
parent | 0f6aea154580c2f220be98d12108dd7d316c21f6 (diff) | |
download | vcxsrv-6355693a021ce9473196b685cc9f8c2cbb0899a8.tar.gz vcxsrv-6355693a021ce9473196b685cc9f8c2cbb0899a8.tar.bz2 vcxsrv-6355693a021ce9473196b685cc9f8c2cbb0899a8.zip |
libxcb mesa xcb-proto git update 12 May 2011
Diffstat (limited to 'libxcb/xcb-proto')
-rw-r--r-- | libxcb/xcb-proto/src/sync.xml | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/libxcb/xcb-proto/src/sync.xml b/libxcb/xcb-proto/src/sync.xml index e30923325..516d149ab 100644 --- a/libxcb/xcb-proto/src/sync.xml +++ b/libxcb/xcb-proto/src/sync.xml @@ -5,7 +5,7 @@ All Rights Reserved. See the file COPYING in this directory for licensing information. --> <xcb header="sync" extension-xname="SYNC" extension-name="Sync" - major-version="3" minor-version="0"> + major-version="3" minor-version="1"> <import>xproto</import> <xidtype name="ALARM" /> @@ -18,6 +18,8 @@ for licensing information. <xidtype name="COUNTER" /> + <xidtype name="FENCE" /> + <enum name="TESTTYPE"> <item name="PositiveTransition" /> <item name="NegativeTransition" /> @@ -173,6 +175,37 @@ for licensing information. </reply> </request> + <request name="CreateFence" opcode="14"> + <field type="DRAWABLE" name="drawable" /> + <field type="FENCE" name="fence" /> + <field type="BOOL" name="initially_triggered" /> + </request> + + <request name="TriggerFence" opcode="15"> + <field type="FENCE" name="fence" /> + </request> + + <request name="ResetFence" opcode="16"> + <field type="FENCE" name="fence" /> + </request> + + <request name="DestroyFence" opcode="17"> + <field type="FENCE" name="fence" /> + </request> + + <request name="QueryFence" opcode="18"> + <field type="FENCE" name="fence" /> + <reply> + <pad bytes="1" /> + <field type="BOOL" name="triggered" /> + <pad bytes="23" /> + </reply> + </request> + + <request name="AwaitFence" opcode="19"> + <list type="FENCE" name="fence_list" /> + </request> + <event name="CounterNotify" number="0"> <field type="CARD8" name="kind" /> <field type="COUNTER" name="counter" /> |