aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/output.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-11-19 17:04:28 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2017-11-19 17:04:28 -0500
commitdb4fb1c85c132e001fb1ae18f03f7585def1ae19 (patch)
tree91da84c9476e6ec34c65f3f8923961fd893fa721 /include/sway/output.h
parentMove everything to sway/old/ (diff)
downloadsway-db4fb1c85c132e001fb1ae18f03f7585def1ae19.tar.gz
sway-db4fb1c85c132e001fb1ae18f03f7585def1ae19.tar.zst
sway-db4fb1c85c132e001fb1ae18f03f7585def1ae19.zip
Add outputs to the tree
Diffstat (limited to 'include/sway/output.h')
-rw-r--r--include/sway/output.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index ffc6708d..e2f81bcb 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -5,9 +5,11 @@
5#include <wlr/types/wlr_output.h> 5#include <wlr/types/wlr_output.h>
6 6
7struct sway_server; 7struct sway_server;
8struct sway_container;
8 9
9struct sway_output { 10struct sway_output {
10 struct wlr_output *wlr_output; 11 struct wlr_output *wlr_output;
12 struct sway_container *swayc;
11 struct sway_server *server; 13 struct sway_server *server;
12 struct timespec last_frame; 14 struct timespec last_frame;
13 struct wl_listener frame; 15 struct wl_listener frame;