diff options
| author | 2015-09-11 07:20:02 -0400 | |
|---|---|---|
| committer | 2015-09-11 07:31:15 -0400 | |
| commit | aec28ed91eb570c5c7aac31ee6ef302df91ee868 (patch) | |
| tree | ce6b4f5b99132665c448b26e3e3c8db88e568617 /src/video_core/shader | |
| parent | Merge pull request #1141 from lioncash/hdr (diff) | |
| download | yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.gz yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.tar.xz yuzu-aec28ed91eb570c5c7aac31ee6ef302df91ee868.zip | |
video_core: Reorganize headers
Diffstat (limited to 'src/video_core/shader')
| -rw-r--r-- | src/video_core/shader/shader_interpreter.cpp | 5 | ||||
| -rw-r--r-- | src/video_core/shader/shader_interpreter.h | 2 | ||||
| -rw-r--r-- | src/video_core/shader/shader_jit_x64.h | 3 |
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 @@ | |||
| 7 | #include <nihstro/shader_bytecode.h> | 7 | #include <nihstro/shader_bytecode.h> |
| 8 | 8 | ||
| 9 | #include "video_core/pica.h" | 9 | #include "video_core/pica.h" |
| 10 | 10 | #include "video_core/shader/shader.h" | |
| 11 | #include "shader.h" | 11 | #include "video_core/shader/shader_interpreter.h" |
| 12 | #include "shader_interpreter.h" | ||
| 13 | 12 | ||
| 14 | using nihstro::OpCode; | 13 | using nihstro::OpCode; |
| 15 | using nihstro::Instruction; | 14 | 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 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "shader.h" | 7 | #include "video_core/shader/shader.h" |
| 8 | 8 | ||
| 9 | namespace Pica { | 9 | namespace Pica { |
| 10 | 10 | ||
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 @@ | |||
| 9 | #include "common/x64/emitter.h" | 9 | #include "common/x64/emitter.h" |
| 10 | 10 | ||
| 11 | #include "video_core/pica.h" | 11 | #include "video_core/pica.h" |
| 12 | 12 | #include "video_core/shader/shader.h" | |
| 13 | #include "shader.h" | ||
| 14 | 13 | ||
| 15 | using nihstro::Instruction; | 14 | using nihstro::Instruction; |
| 16 | using nihstro::OpCode; | 15 | using nihstro::OpCode; |