aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/layers.h
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-09-14 19:21:44 +0200
committerLibravatar emersion <contact@emersion.fr>2018-09-14 19:21:44 +0200
commit7699c5444c32289a22ce2c57d1daadabed87e7ac (patch)
tree74696e6dd2f405e8629061ee010e14e3d6cf0b37 /include/sway/layers.h
parentMerge pull request #2628 from RyanDwyer/remove-rejigger-assertion (diff)
downloadsway-7699c5444c32289a22ce2c57d1daadabed87e7ac.tar.gz
sway-7699c5444c32289a22ce2c57d1daadabed87e7ac.tar.zst
sway-7699c5444c32289a22ce2c57d1daadabed87e7ac.zip
Update for swaywm/wlroots#1243
Diffstat (limited to 'include/sway/layers.h')
-rw-r--r--include/sway/layers.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/sway/layers.h b/include/sway/layers.h
index 96155eae..51878fc9 100644
--- a/include/sway/layers.h
+++ b/include/sway/layers.h
@@ -3,10 +3,10 @@
3#include <stdbool.h> 3#include <stdbool.h>
4#include <wlr/types/wlr_box.h> 4#include <wlr/types/wlr_box.h>
5#include <wlr/types/wlr_surface.h> 5#include <wlr/types/wlr_surface.h>
6#include <wlr/types/wlr_layer_shell.h> 6#include <wlr/types/wlr_layer_shell_v1.h>
7 7
8struct sway_layer_surface { 8struct sway_layer_surface {
9 struct wlr_layer_surface *layer_surface; 9 struct wlr_layer_surface_v1 *layer_surface;
10 struct wl_list link; 10 struct wl_list link;
11 11
12 struct wl_listener destroy; 12 struct wl_listener destroy;
@@ -22,7 +22,7 @@ struct sway_layer_surface {
22struct sway_output; 22struct sway_output;
23void arrange_layers(struct sway_output *output); 23void arrange_layers(struct sway_output *output);
24 24
25struct sway_layer_surface *layer_from_wlr_layer_surface( 25struct sway_layer_surface *layer_from_wlr_layer_surface_v1(
26 struct wlr_layer_surface *layer_surface); 26 struct wlr_layer_surface_v1 *layer_surface);
27 27
28#endif 28#endif