summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-07-22 01:09:11 +0200
committerbunnei <bunneidev@gmail.com>2015-08-15 23:33:42 +0200
commit18527b9e21a95445fbee45fea29f674fbdd2aae1 (patch)
treebf037c3877e288b561cd7f075c24d3ce8e449a85 /src/video_core/shader
parentGPU: Refactor "VertexShader" namespace to "Shader". (diff)
downloadyuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.tar
yuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.tar.gz
yuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.tar.bz2
yuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.tar.lz
yuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.tar.xz
yuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.tar.zst
yuzu-18527b9e21a95445fbee45fea29f674fbdd2aae1.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/shader/shader_interpreter.cpp (renamed from src/video_core/shader_interpreter.cpp)6
-rw-r--r--src/video_core/shader/shader_interpreter.h (renamed from src/video_core/shader_interpreter.h)2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/shader_interpreter.cpp b/src/video_core/shader/shader_interpreter.cpp
index 3cce26d36..369883225 100644
--- a/src/video_core/shader_interpreter.cpp
+++ b/src/video_core/shader/shader_interpreter.cpp
@@ -11,9 +11,9 @@
#include "common/profiler.h"
-#include "pica.h"
-#include "shader_interpreter.h"
-#include "debug_utils/debug_utils.h"
+#include "video_core/pica.h"
+#include "video_core/shader/shader_interpreter.h"
+#include "video_core/debug_utils/debug_utils.h"
using nihstro::OpCode;
using nihstro::Instruction;
diff --git a/src/video_core/shader_interpreter.h b/src/video_core/shader/shader_interpreter.h
index 942a30841..f2900bfc6 100644
--- a/src/video_core/shader_interpreter.h
+++ b/src/video_core/shader/shader_interpreter.h
@@ -8,7 +8,7 @@
#include "common/vector_math.h"
-#include "pica.h"
+#include "video_core/pica.h"
namespace Pica {