summaryrefslogtreecommitdiff
path: root/tinywl
diff options
context:
space:
mode:
authorWilliam McKinnon <[email protected]>2023-07-11 00:44:26 -0400
committerWilliam McKinnon <[email protected]>2023-07-11 00:44:26 -0400
commit9eaa07a4b141bc80a46cb7ab2dc94048f126fa8c (patch)
treec78cb64199476b94d9ee2f403f1e31ff4d3c5a69 /tinywl
parent74e85d896e4e0964a93113cd9ef31bfb10747b28 (diff)
added more scene dependencies, added tinywl
Diffstat (limited to 'tinywl')
-rw-r--r--tinywl/meson.build2
-rw-r--r--tinywl/tinywl.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/tinywl/meson.build b/tinywl/meson.build
index 82d31d2..74fe731 100644
--- a/tinywl/meson.build
+++ b/tinywl/meson.build
@@ -1,5 +1,5 @@
executable(
'tinywl',
['tinywl.c', protocols_client_header['xdg-shell']],
- dependencies: wlroots,
+# dependencies: wlroots,
)
diff --git a/tinywl/tinywl.c b/tinywl/tinywl.c
index 7e3c8c1..80eb6bd 100644
--- a/tinywl/tinywl.c
+++ b/tinywl/tinywl.c
@@ -18,7 +18,6 @@
#include <wlr/types/wlr_output.h>
#include <wlr/types/wlr_output_layout.h>
#include <wlr/types/wlr_pointer.h>
-#include <wlr/types/wlr_scene.h>
#include <wlr/types/wlr_seat.h>
#include <wlr/types/wlr_subcompositor.h>
#include <wlr/types/wlr_xcursor_manager.h>
@@ -26,6 +25,8 @@
#include <wlr/util/log.h>
#include <xkbcommon/xkbcommon.h>
+#include "types/wlr_scene.h"
+
/* For brevity's sake, struct members are annotated where they are used. */
enum tinywl_cursor_mode {
TINYWL_CURSOR_PASSTHROUGH,