wlr_scene: Keep track of all surfaces for subsurface_tree

This commit is contained in:
Alexander Orzechowski 2024-07-04 12:46:27 -04:00
parent 1901c34e81
commit 3a997b7454
2 changed files with 9 additions and 0 deletions

View file

@ -133,6 +133,10 @@ struct wlr_scene_surface {
struct wlr_scene_subsurface_tree {
struct wlr_scene_tree *tree;
// private state
struct wl_list surfaces;
};
/** A scene-graph node displaying a solid-colored rectangle */