summaryrefslogtreecommitdiffstats
path: root/wayland.h
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-11-07 08:39:37 -0500
committerKristian Høgsberg <krh@redhat.com>2008-11-07 08:39:37 -0500
commit7f77bd8fbedee8a8a1fbb26776084ccaffc2a087 (patch)
tree1d93060c20a11ece0fef71d3a061d918072f40c2 /wayland.h
parent5503bf82c44b2da26c27582b3d4400d7fd8d23c3 (diff)
downloadwayland-7f77bd8fbedee8a8a1fbb26776084ccaffc2a087.tar.gz
wayland-7f77bd8fbedee8a8a1fbb26776084ccaffc2a087.tar.xz
wayland-7f77bd8fbedee8a8a1fbb26776084ccaffc2a087.zip
Add copy and damage surface requests.
Diffstat (limited to 'wayland.h')
-rw-r--r--wayland.h20
1 files changed, 17 insertions, 3 deletions
diff --git a/wayland.h b/wayland.h
index ec28a44..c834aca 100644
--- a/wayland.h
+++ b/wayland.h
@@ -122,10 +122,24 @@ struct wl_compositor_interface {
void (*notify_surface_destroy)(struct wl_compositor *compositor,
struct wl_surface *surface);
void (*notify_surface_attach)(struct wl_compositor *compositor,
- struct wl_surface *surface, uint32_t name,
- uint32_t width, uint32_t height, uint32_t stride);
+ struct wl_surface *surface,
+ uint32_t name,
+ uint32_t width, uint32_t height,
+ uint32_t stride);
void (*notify_surface_map)(struct wl_compositor *compositor,
- struct wl_surface *surface, struct wl_map *map);
+ struct wl_surface *surface,
+ struct wl_map *map);
+ void (*notify_surface_copy)(struct wl_compositor *compositor,
+ struct wl_surface *surface,
+ int32_t dst_x, int32_t dst_y,
+ uint32_t name, uint32_t stride,
+ int32_t x, int32_t y,
+ int32_t width, int32_t height);
+ void (*notify_surface_damage)(struct wl_compositor *compositor,
+ struct wl_surface *surface,
+ int32_t x, int32_t y,
+ int32_t width, int32_t height);
+
};
void wl_display_set_compositor(struct wl_display *display,