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

@ -173,9 +173,9 @@ dump_tree(struct server *server, struct wlr_scene_node *node,
return;
}
struct wlr_scene_node *child;
wl_list_for_each(child, &node->state.children, state.link) {
wl_list_for_each(child, &node->children, link) {
dump_tree(server, child, pos + INDENT_SIZE,
x + child->state.x, y + child->state.y);
x + child->x, y + child->y);
}
}