summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/extensions.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/extensions.h b/include/extensions.h
index 311ead1d..67c7d5fe 100644
--- a/include/extensions.h
+++ b/include/extensions.h
@@ -9,13 +9,15 @@
9struct background_config { 9struct background_config {
10 wlc_handle output; 10 wlc_handle output;
11 wlc_resource surface; 11 wlc_resource surface;
12 struct wl_resource *resource; 12 // we need the wl_resource of the surface in the destructor
13 struct wl_resource *wl_surface_res;
13}; 14};
14 15
15struct panel_config { 16struct panel_config {
16 wlc_handle output; 17 wlc_handle output;
17 wlc_resource surface; 18 wlc_resource surface;
18 struct wl_resource *resource; 19 // we need the wl_resource of the surface in the destructor
20 struct wl_resource *wl_surface_res;
19}; 21};
20 22
21struct desktop_shell_state { 23struct desktop_shell_state {