diff options
author | Kirill Primak <vyivel@eclair.cafe> | 2022-06-29 21:10:08 +0300 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2022-06-29 21:19:38 +0300 |
commit | 694b8c66837ab232f32fabd212869f4e2b4606ad (patch) | |
tree | a661389b9063a5fe7d39381f34267a3a9020e629 /include | |
parent | 97f0347780358eb1e052af5bc40f2c0c9b7e170b (diff) |
scene: add missing output damage listener
This is necessary to handle damage coming from the backend and software
cursors.
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_scene.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_scene.h b/include/wlr/types/wlr_scene.h index 74f55288..95f18f37 100644 --- a/include/wlr/types/wlr_scene.h +++ b/include/wlr/types/wlr_scene.h @@ -176,6 +176,7 @@ struct wlr_scene_output { struct wl_listener output_commit; struct wl_listener output_mode; + struct wl_listener output_damage; struct wl_listener output_needs_frame; }; |