diff options
author | Kirill Primak <vyivel@eclair.cafe> | 2022-05-31 21:39:53 +0300 |
---|---|---|
committer | Isaac Freund <mail@isaacfreund.com> | 2022-06-01 09:49:25 +0000 |
commit | d3bc17d5d1712cb445598d5fbfd40574661b2568 (patch) | |
tree | 88f363932ebc2fc52829efb057ae790be0d4af5c /include | |
parent | ec328ca8cc82f5cac657141e31a81a590759150d (diff) |
scene: add wlr_scene_output.events.destroy
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_scene.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_scene.h b/include/wlr/types/wlr_scene.h index 38a2e478..4b8ea517 100644 --- a/include/wlr/types/wlr_scene.h +++ b/include/wlr/types/wlr_scene.h @@ -164,6 +164,10 @@ struct wlr_scene_output { int x, y; + struct { + struct wl_signal destroy; + } events; + // private state uint8_t index; |