aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/xwayland.h
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-10-24 18:57:20 -0400
committerTony Crisci <tony@dubstepdish.com>2017-10-24 18:57:20 -0400
commit2ff94d0036833b85f54c8be0ffb98c49be168be2 (patch)
treea2c34200e6ec151191017719d1ee403399af5cfd /include/wlr/xwayland.h
parent79e14f65e0a005b1ab47b294dd2368cb3d55cb33 (diff)
xwm: get rid of displayable surfaces list
Diffstat (limited to 'include/wlr/xwayland.h')
-rw-r--r--include/wlr/xwayland.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h
index 2cd1db92..3d5a204c 100644
--- a/include/wlr/xwayland.h
+++ b/include/wlr/xwayland.h
@@ -25,7 +25,6 @@ struct wlr_xwayland {
struct wl_event_source *sigusr1_source;
struct wl_listener destroy_listener;
struct wlr_xwm *xwm;
- struct wl_list displayable_surfaces; // wlr_xwayland_surface::displayable_link
struct {
struct wl_signal new_surface;
@@ -69,13 +68,8 @@ struct wlr_xwayland_surface {
struct wlr_xwm *xwm;
uint32_t surface_id;
- struct wl_list displayable_link;
- // XXX: I think this is just a list of all the surfaces
- struct wl_list new_link;
+ struct wl_list link;
struct wl_list unpaired_link;
- bool displayable;
- bool unpaired;
-
struct wlr_surface *surface;
int16_t x, y;