summaryrefslogtreecommitdiffhomepage
path: root/shaders
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-10-09 07:00:52 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-10-09 07:00:52 +0200
commit3a16258e42b6f198c2fb4bfde45c66ee405adac4 (patch)
tree05f67703353541958122918ce6c6b5f05052310d /shaders
parente7518ac6a5e09502219e798841ae9dfa497f32b5 (diff)
don't -I./src
Diffstat (limited to 'shaders')
-rw-r--r--shaders/lightmap.hpp2
-rw-r--r--shaders/shader.cpp2
-rw-r--r--shaders/shader.hpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/shaders/lightmap.hpp b/shaders/lightmap.hpp
index 2a0869bc..ff2dd9b4 100644
--- a/shaders/lightmap.hpp
+++ b/shaders/lightmap.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "light-falloff.hpp"
+#include "src/light-falloff.hpp"
#include "shaders/texture-unit-cache.hpp"
#include <array>
#include <Corrade/Containers/Array.h>
diff --git a/shaders/shader.cpp b/shaders/shader.cpp
index 22222842..a276f053 100644
--- a/shaders/shader.cpp
+++ b/shaders/shader.cpp
@@ -1,7 +1,7 @@
#include "shaders/shader.hpp"
#include "loader/loader.hpp"
#include "compat/assert.hpp"
-#include "local-coords.hpp"
+#include "src/local-coords.hpp"
#include <cmath>
#include <Corrade/Containers/Iterable.h>
#include <Corrade/Containers/StringStl.h>
diff --git a/shaders/shader.hpp b/shaders/shader.hpp
index c163b1dc..c50f4681 100644
--- a/shaders/shader.hpp
+++ b/shaders/shader.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "tile-defs.hpp"
+#include "src/tile-defs.hpp"
#include "shaders/texture-unit-cache.hpp"
#include <utility>
#include <Magnum/GL/AbstractShaderProgram.h>