aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_surface.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_surface.h b/include/wlr/types/wlr_surface.h
index c9abf042..b6d5f79f 100644
--- a/include/wlr/types/wlr_surface.h
+++ b/include/wlr/types/wlr_surface.h
@@ -48,8 +48,10 @@ struct wlr_subsurface {
bool has_cache;
bool synchronized;
+ bool reordered;
struct wl_list parent_link;
+ struct wl_list parent_pending_link;
};
struct wlr_surface {
@@ -76,6 +78,8 @@ struct wlr_surface {
struct wlr_subsurface *subsurface;
struct wl_list subsurface_list; // wlr_subsurface::parent_link
+ // wlr_subsurface::parent_pending_link
+ struct wl_list subsurface_pending_list;
void *data;
};