diff options
author | Erik Reider <[email protected]> | 2024-01-06 21:24:37 +0100 |
---|---|---|
committer | Erik Reider <[email protected]> | 2024-01-06 21:24:37 +0100 |
commit | 3e6108472c3d578175ea6fb685e1919b3585606f (patch) | |
tree | 8d9ecc79b48b1b0b087357641863953934520163 /types/scene/wlr_scene.c | |
parent | c66fe881df7aa79a018efbdfe1ea756f2b741b23 (diff) |
Moved wlr_scene.h and shadow_data.h into scenefx dir
Diffstat (limited to 'types/scene/wlr_scene.c')
-rw-r--r-- | types/scene/wlr_scene.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/types/scene/wlr_scene.c b/types/scene/wlr_scene.c index 8ded6a8..e9f765c 100644 --- a/types/scene/wlr_scene.c +++ b/types/scene/wlr_scene.c @@ -1,6 +1,7 @@ #define _POSIX_C_SOURCE 200809L #include <assert.h> #include <stdlib.h> +#include <scenefx/types/wlr_scene.h> #include <string.h> #include <wlr/backend.h> #include <wlr/render/gles2.h> @@ -8,7 +9,6 @@ #include <wlr/types/wlr_damage_ring.h> #include <wlr/types/wlr_matrix.h> #include <wlr/types/wlr_presentation_time.h> -#include <wlr/types/wlr_scene.h> #include <wlr/types/wlr_subcompositor.h> #include <wlr/types/wlr_xdg_shell.h> #include <wlr/util/log.h> @@ -16,7 +16,7 @@ #include <wlr/render/swapchain.h> #include "render/pass.h" -#include "types/fx/shadow_data.h" +#include "scenefx/types/fx/shadow_data.h" #include "types/wlr_buffer.h" #include "types/wlr_output.h" #include "types/wlr_scene.h" |