mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
Chase wlroots: scene_node.state is now inlined
Chases wlroots cb2dbc327e4d695c2a60a386e116a7dc20b29107 wlr_scene: Inline wlr_scene_node_state
This commit is contained in:
parent
2ed7a10779
commit
08518513cc
8 changed files with 16 additions and 16 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue