diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2023-11-19 16:23:19 -0500 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2023-12-03 05:29:05 +0000 |
commit | 06d301bf1a15826fb6ab89b9c40d40ecb86060cc (patch) | |
tree | 6eba9bd93a96b350d2cbdccdeee531b9fea2d7b4 /include | |
parent | 6e03d3015e1668bd70266b0ee4b0720b86ca59c7 (diff) |
wlr_scene: Track output damage separately
The damage ring is only supposed to keep track of damage within
the swapchain
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_scene.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_scene.h b/include/wlr/types/wlr_scene.h index dc8d6fef..2811e95b 100644 --- a/include/wlr/types/wlr_scene.h +++ b/include/wlr/types/wlr_scene.h @@ -206,6 +206,8 @@ struct wlr_scene_output { // private state + pixman_region32_t pending_commit_damage; + uint8_t index; bool prev_scanout; |