summaryrefslogtreecommitdiff
path: root/protocol
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2010-11-29 17:04:21 -0500
committerKristian Høgsberg <krh@bitplanet.net>2010-11-29 17:04:21 -0500
commitc1ad1f9c9b493bc3b8952a4b6702476f1bbaa8df (patch)
treedf2c239da956e3ce34a25d565ddfd9d849f4d4d5 /protocol
parentac93a3d3d74f683345bdce8cb8388532540f3f49 (diff)
Consolidate 'sync' and 'frame' events into just one 'key' event
Diffstat (limited to 'protocol')
-rw-r--r--protocol/wayland.xml19
1 files changed, 6 insertions, 13 deletions
diff --git a/protocol/wayland.xml b/protocol/wayland.xml
index 6cdfe8f..24c53c2 100644
--- a/protocol/wayland.xml
+++ b/protocol/wayland.xml
@@ -58,19 +58,12 @@
<arg name="base" type="uint"/>
</event>
- <!-- A reply to the sync request. All requests made before the
- "sync" request that had the same key as the one present in
- this event have been processed by the server. -->
- <event name="sync">
- <arg name="key" type="uint"/>
- </event>
-
- <!-- A reply to the frame request. The key is the one used in the
- request. time is in millisecond units, and denotes the time
- when the frame was posted on the display. time can be used to
- estimaate frame rate, determine how much to advance
- animatiosn and compoensate for jitter-->
- <event name="frame">
+ <!-- A reply to the frame or sync request. The key is the one
+ used in the request. time is in millisecond units, and
+ denotes the time when the frame was posted on the
+ display. time can be used to estimaate frame rate, determine
+ how much to advance animations and compensate for jitter. -->
+ <event name="key">
<arg name="key" type="uint"/>
<arg name="time" type="uint"/>
</event>