diff options
author | Kristian Høgsberg <krh@redhat.com> | 2008-10-07 10:10:36 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@redhat.com> | 2008-11-06 10:51:43 -0500 |
commit | 05eff51e413ff48c2edd2a2ab3ca9f9435c5c855 (patch) | |
tree | 7c2251d4bafd6d7f8daa347b19d07f0ccb1ddd53 /wayland-client.h | |
parent | a67a71a7cf2f6cf17cb10eeeb4e9bb867bb9eb40 (diff) | |
download | weston-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar.gz weston-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar.bz2 weston-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.zip |
Add surface.map request.
Diffstat (limited to 'wayland-client.h')
-rw-r--r-- | wayland-client.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/wayland-client.h b/wayland-client.h index ae62bcac..2d6c799a 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 |