aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/output.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-03-28 16:38:11 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-03-28 16:42:13 -0400
commit68cfa7ef6705c530ff28d9754c5b6cab7b429150 (patch)
tree0c25eb44f1285f2522b6a5f014276239cfa6ae3f /include/sway/output.h
parentAdd initial layer shell skeleton (diff)
downloadsway-68cfa7ef6705c530ff28d9754c5b6cab7b429150.tar.gz
sway-68cfa7ef6705c530ff28d9754c5b6cab7b429150.tar.zst
sway-68cfa7ef6705c530ff28d9754c5b6cab7b429150.zip
Render layer surfaces and respect exclusive zone
Diffstat (limited to 'include/sway/output.h')
-rw-r--r--include/sway/output.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index 769d44d0..44d009d1 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -4,6 +4,7 @@
4#include <wayland-server.h> 4#include <wayland-server.h>
5#include <wlr/types/wlr_box.h> 5#include <wlr/types/wlr_box.h>
6#include <wlr/types/wlr_output.h> 6#include <wlr/types/wlr_output.h>
7#include <unistd.h>
7 8
8struct sway_server; 9struct sway_server;
9struct sway_container; 10struct sway_container;
@@ -18,7 +19,10 @@ struct sway_output {
18 struct wlr_box usable_area; 19 struct wlr_box usable_area;
19 20
20 struct wl_listener frame; 21 struct wl_listener frame;
21 struct wl_listener output_destroy; 22 struct wl_listener destroy;
23 struct wl_listener mode;
24
25 pid_t bg_pid;
22}; 26};
23 27
24#endif 28#endif