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 | Bunch of new stuff: simple compositor, cairo+gem use in client, events. (diff) | |
| download | wayland-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar wayland-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar.gz wayland-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar.bz2 wayland-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar.lz wayland-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar.xz wayland-05eff51e413ff48c2edd2a2ab3ca9f9435c5c855.tar.zst wayland-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 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 |
