diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2017-08-19 22:14:51 +0200 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2017-08-23 22:03:49 +0200 |
commit | 3cc5b1acc6014ef424630c2ac2ae5b024c2b57e8 (patch) | |
tree | f930a5bec379442a976d1ccd4956fc39493c2455 /include/wlr | |
parent | b2bab1af5c34b785a9b08db04af1330e61dd210c (diff) |
wlr_compositor: add signal for create_surface
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_compositor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_compositor.h b/include/wlr/types/wlr_compositor.h index 1b2f890f..d8a2506f 100644 --- a/include/wlr/types/wlr_compositor.h +++ b/include/wlr/types/wlr_compositor.h @@ -9,6 +9,8 @@ struct wlr_compositor { struct wlr_renderer *renderer; struct wl_list surfaces; struct wl_listener destroy_surface_listener; + + struct wl_signal create_surface_signal; }; void wlr_compositor_destroy(struct wlr_compositor *wlr_compositor); |