summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2014-05-30 12:08:16 +0200
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2014-06-03 09:59:35 +0300
commit0dd019925b88ffee895aa426826f06b20804a758 (patch)
treefe52cc711aecbdce78b4471d5327465fd931cc06
parent3de6a1de3f860fdb4e0eb8c09e9a868295f44643 (diff)
protocol: add wl_surface errors enum for bad scale and transform values
-rw-r--r--protocol/wayland.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/protocol/wayland.xml b/protocol/wayland.xml
index 22eb6e7..d84b356 100644
--- a/protocol/wayland.xml
+++ b/protocol/wayland.xml
@@ -977,6 +977,14 @@
cursor images for pointers, drag icons, etc.
</description>
+ <enum name="error">
+ <description summary="wl_surface error values">
+ These errors can be emitted in response to wl_surface requests.
+ </description>
+ <entry name="invalid_scale" value="0" summary="buffer scale value is invalid"/>
+ <entry name="invalid_transform" value="1" summary="buffer transform value is invalid"/>
+ </enum>
+
<request name="destroy" type="destructor">
<description summary="delete surface">
Deletes the surface and invalidates its object ID.
@@ -1229,6 +1237,10 @@
Note that if the transform value includes 90 or 270 degree rotation,
the width of the buffer will become the surface height and the height
of the buffer will become the surface width.
+
+ If transform is not one of the values from the
+ wl_output.transform enum the invalid_transform protocol error
+ is raised.
</description>
<arg name="transform" type="int"/>
</request>
@@ -1257,6 +1269,9 @@
Note that if the scale is larger than 1, then you have to attach
a buffer that is larger (by a factor of scale in each dimension)
than the desired surface size.
+
+ If scale is not positive the invalid_scale protocol error is
+ raised.
</description>
<arg name="scale" type="int"/>
</request>