mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-14 06:59:43 -05:00
subsurface: rename wlr_subsurface_state to wlr_subsurface_parent_state
Add a comment to explain the difference.
This commit is contained in:
parent
242c23743f
commit
56b6b80b9a
2 changed files with 9 additions and 4 deletions
|
|
@ -1350,7 +1350,7 @@ static void surface_for_each_surface(struct wlr_surface *surface, int x, int y,
|
|||
wlr_surface_iterator_func_t iterator, void *user_data) {
|
||||
struct wlr_subsurface *subsurface;
|
||||
wl_list_for_each(subsurface, &surface->subsurfaces_below, parent_link) {
|
||||
struct wlr_subsurface_state *state = &subsurface->current;
|
||||
struct wlr_subsurface_parent_state *state = &subsurface->current;
|
||||
int sx = state->x;
|
||||
int sy = state->y;
|
||||
|
||||
|
|
@ -1361,7 +1361,7 @@ static void surface_for_each_surface(struct wlr_surface *surface, int x, int y,
|
|||
iterator(surface, x, y, user_data);
|
||||
|
||||
wl_list_for_each(subsurface, &surface->subsurfaces_above, parent_link) {
|
||||
struct wlr_subsurface_state *state = &subsurface->current;
|
||||
struct wlr_subsurface_parent_state *state = &subsurface->current;
|
||||
int sx = state->x;
|
||||
int sy = state->y;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue