summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-11 13:20:02 +0200
committerLioncash <mathew1800@gmail.com>2015-09-11 13:31:15 +0200
commitaec28ed91eb570c5c7aac31ee6ef302df91ee868 (patch)
treece6b4f5b99132665c448b26e3e3c8db88e568617 /src/video_core/shader
parentMerge pull request #1141 from lioncash/hdr (diff)
downloadyuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar
yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.gz
yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.bz2
yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.lz
yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.xz
yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.zst
yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.zip
Diffstat (limited to 'src/video_core/shader')
-rw-r--r--src/video_core/shader/shader_interpreter.cpp5
-rw-r--r--src/video_core/shader/shader_interpreter.h2
-rw-r--r--src/video_core/shader/shader_jit_x64.h3
3 files changed, 4 insertions, 6 deletions
diff --git a/src/video_core/shader/shader_interpreter.cpp b/src/video_core/shader/shader_interpreter.cpp
index 69e4efa68..7b0c20b74 100644
--- a/src/video_core/shader/shader_interpreter.cpp
+++ b/src/video_core/shader/shader_interpreter.cpp
@@ -7,9 +7,8 @@
#include <nihstro/shader_bytecode.h>
#include "video_core/pica.h"
-
-#include "shader.h"
-#include "shader_interpreter.h"
+#include "video_core/shader/shader.h"
+#include "video_core/shader/shader_interpreter.h"
using nihstro::OpCode;
using nihstro::Instruction;
diff --git a/src/video_core/shader/shader_interpreter.h b/src/video_core/shader/shader_interpreter.h
index 791467252..294bca50e 100644
--- a/src/video_core/shader/shader_interpreter.h
+++ b/src/video_core/shader/shader_interpreter.h
@@ -4,7 +4,7 @@
#pragma once
-#include "shader.h"
+#include "video_core/shader/shader.h"
namespace Pica {
diff --git a/src/video_core/shader/shader_jit_x64.h b/src/video_core/shader/shader_jit_x64.h
index 8668cfff4..3afbceccf 100644
--- a/src/video_core/shader/shader_jit_x64.h
+++ b/src/video_core/shader/shader_jit_x64.h
@@ -9,8 +9,7 @@
#include "common/x64/emitter.h"
#include "video_core/pica.h"
-
-#include "shader.h"
+#include "video_core/shader/shader.h"
using nihstro::Instruction;
using nihstro::OpCode;