aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-09-29 08:40:37 -0400
committerTony Crisci <tony@dubstepdish.com>2017-09-30 08:55:40 -0400
commit93f79378f7801d3d7fce0125bf0b43b89252e2b8 (patch)
tree4f7bc926ea77db7d70e423e8f20032f30e1697b9 /include
parent2e8543cac0436decfd412520b39a85b7e66f8fdc (diff)
subsurface stacking requests
Diffstat (limited to 'include')
-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;
};