Chase wlroots: scene_node.state is now inlined

Chases wlroots cb2dbc327e4d695c2a60a386e116a7dc20b29107
wlr_scene: Inline wlr_scene_node_state
This commit is contained in:
Consolatis 2022-06-05 15:55:18 +02:00 committed by Johan Malm
parent 2ed7a10779
commit 08518513cc
8 changed files with 16 additions and 16 deletions

View file

@ -96,8 +96,8 @@ static void
destroy_osd_nodes(struct output *output)
{
struct wlr_scene_node *child, *next;
struct wl_list *children = &output->osd_tree->node.state.children;
wl_list_for_each_safe(child, next, children, state.link) {
struct wl_list *children = &output->osd_tree->node.children;
wl_list_for_each_safe(child, next, children, link) {
wlr_scene_node_destroy(child);
}
}