summaryrefslogtreecommitdiffstats
path: root/wayland-client.h
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-10-07 10:10:36 -0400
committerKristian Høgsberg <krh@redhat.com>2008-11-06 10:51:43 -0500
commit05eff51e413ff48c2edd2a2ab3ca9f9435c5c855 (patch)
tree7c2251d4bafd6d7f8daa347b19d07f0ccb1ddd53 /wayland-client.h
parenta67a71a7cf2f6cf17cb10eeeb4e9bb867bb9eb40 (diff)
downloadwayland-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar.gz
wayland-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar.xz
wayland-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.zip
Add surface.map request.
Diffstat (limited to 'wayland-client.h')
-rw-r--r--wayland-client.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/wayland-client.h b/wayland-client.h
index ae62bca..2d6c799 100644
--- a/wayland-client.h
+++ b/wayland-client.h
@@ -21,8 +21,10 @@ wl_connection_get_display(struct wl_connection *connection);
struct wl_surface *
wl_display_create_surface(struct wl_display *display);
-void
-wl_surface_attach(struct wl_surface *surface,
- uint32_t name, int width, int height, int stride);
+void wl_surface_destroy(struct wl_surface *surface);
+void wl_surface_attach(struct wl_surface *surface,
+ uint32_t name, int width, int height, int stride);
+void wl_surface_map(struct wl_surface *surface,
+ int32_t x, int32_t y, int32_t width, int32_t height);
#endif