diff options
author | Benjamin Franzke <[email protected]> | 2011-04-21 09:39:25 +0200 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2011-04-22 08:56:27 -0400 |
commit | 2225397d1cf5e4f4a1293495f3a26bd33e5d7ac3 (patch) | |
tree | 904068be0849f3257c740236f12a6a3572f23621 /src/egl/wayland/wayland-drm | |
parent | 1faf079a692bbf4b24c8e83fa2b331c1e3b58e13 (diff) |
egl/wayland: Fix prefixes for interface names
Diffstat (limited to 'src/egl/wayland/wayland-drm')
-rw-r--r-- | src/egl/wayland/wayland-drm/protocol/wayland-drm.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egl/wayland/wayland-drm/protocol/wayland-drm.xml b/src/egl/wayland/wayland-drm/protocol/wayland-drm.xml index 46725d85179..cd5d191227a 100644 --- a/src/egl/wayland/wayland-drm/protocol/wayland-drm.xml +++ b/src/egl/wayland/wayland-drm/protocol/wayland-drm.xml @@ -2,7 +2,7 @@ <protocol name="drm"> <!-- drm support. This object is created by the server and published using the display's global event. --> - <interface name="drm" version="1"> + <interface name="wl_drm" version="1"> <!-- Call this request with the magic received from drmGetMagic(). It will be passed on to the drmAuthMagic() or DRIAuthConnection() call. This authentication must be @@ -14,12 +14,12 @@ <!-- Create a wayland buffer for the named DRM buffer. The DRM surface must have a name using the flink ioctl --> <request name="create_buffer"> - <arg name="id" type="new_id" interface="buffer"/> + <arg name="id" type="new_id" interface="wl_buffer"/> <arg name="name" type="uint"/> <arg name="width" type="int"/> <arg name="height" type="int"/> <arg name="stride" type="uint"/> - <arg name="visual" type="object" interface="visual"/> + <arg name="visual" type="object" interface="wl_visual"/> </request> <!-- Notification of the path of the drm device which is used by |