Add surface.map request.

This commit is contained in:
Kristian Høgsberg 2008-10-07 10:10:36 -04:00
parent a67a71a7cf
commit 05eff51e41
6 changed files with 188 additions and 34 deletions

View file

@ -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