aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2023-11-23 13:08:09 +0100
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2023-11-23 16:13:19 +0300
commitfd6d6f1d97deea2fc94aaeb58c85c99a498d905b (patch)
tree8b53890424cdae46c0ec049c153a07fa4907aa54
parentChase wlroots!4440 (diff)
downloadsway-fd6d6f1d97deea2fc94aaeb58c85c99a498d905b.tar.gz
sway-fd6d6f1d97deea2fc94aaeb58c85c99a498d905b.tar.zst
sway-fd6d6f1d97deea2fc94aaeb58c85c99a498d905b.zip
Add wlr/util/transform.h includes
References: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4097 Closes: https://github.com/swaywm/sway/issues/7830
-rw-r--r--sway/commands/output/transform.c1
-rw-r--r--sway/desktop/output.c1
-rw-r--r--sway/desktop/render.c1
-rw-r--r--sway/tree/root.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/sway/commands/output/transform.c b/sway/commands/output/transform.c
index f4fcc8c9..8db71bb3 100644
--- a/sway/commands/output/transform.c
+++ b/sway/commands/output/transform.c
@@ -1,4 +1,5 @@
1#include <string.h> 1#include <string.h>
2#include <wlr/util/transform.h>
2#include "sway/commands.h" 3#include "sway/commands.h"
3#include "sway/config.h" 4#include "sway/config.h"
4#include "log.h" 5#include "log.h"
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index e02ab32d..d9328701 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -16,6 +16,7 @@
16#include <wlr/types/wlr_presentation_time.h> 16#include <wlr/types/wlr_presentation_time.h>
17#include <wlr/types/wlr_compositor.h> 17#include <wlr/types/wlr_compositor.h>
18#include <wlr/util/region.h> 18#include <wlr/util/region.h>
19#include <wlr/util/transform.h>
19#include "config.h" 20#include "config.h"
20#include "log.h" 21#include "log.h"
21#include "sway/config.h" 22#include "sway/config.h"
diff --git a/sway/desktop/render.c b/sway/desktop/render.c
index c4c0004e..9cfdea84 100644
--- a/sway/desktop/render.c
+++ b/sway/desktop/render.c
@@ -13,6 +13,7 @@
13#include <wlr/types/wlr_output.h> 13#include <wlr/types/wlr_output.h>
14#include <wlr/types/wlr_compositor.h> 14#include <wlr/types/wlr_compositor.h>
15#include <wlr/util/region.h> 15#include <wlr/util/region.h>
16#include <wlr/util/transform.h>
16#include "log.h" 17#include "log.h"
17#include "config.h" 18#include "config.h"
18#include "sway/config.h" 19#include "sway/config.h"
diff --git a/sway/tree/root.c b/sway/tree/root.c
index 831c75a5..66008d30 100644
--- a/sway/tree/root.c
+++ b/sway/tree/root.c
@@ -3,6 +3,7 @@
3#include <stdlib.h> 3#include <stdlib.h>
4#include <string.h> 4#include <string.h>
5#include <wlr/types/wlr_output_layout.h> 5#include <wlr/types/wlr_output_layout.h>
6#include <wlr/util/transform.h>
6#include "sway/desktop/transaction.h" 7#include "sway/desktop/transaction.h"
7#include "sway/input/seat.h" 8#include "sway/input/seat.h"
8#include "sway/ipc-server.h" 9#include "sway/ipc-server.h"