diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-01-28 22:27:24 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-04 22:59:12 +0100 |
commit | 5759d94b5c5b11af426668d046d206839bc5e802 (patch) | |
tree | 971681341d1134533fd485e20cfe4863aa34ce27 /src/video_core/shader | |
parent | VideoCore: Split shader regs from Regs struct (diff) | |
download | yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.gz yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.bz2 yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.lz yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.xz yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.zst yuzu-5759d94b5c5b11af426668d046d206839bc5e802.zip |
Diffstat (limited to 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/shader.cpp | 2 | ||||
-rw-r--r-- | src/video_core/shader/shader.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/shader.cpp b/src/video_core/shader/shader.cpp index 840777a66..c860375a1 100644 --- a/src/video_core/shader/shader.cpp +++ b/src/video_core/shader/shader.cpp @@ -7,8 +7,8 @@ #include "common/bit_set.h" #include "common/logging/log.h" #include "common/microprofile.h" -#include "video_core/pica.h" #include "video_core/pica_state.h" +#include "video_core/regs.h" #include "video_core/shader/shader.h" #include "video_core/shader/shader_interpreter.h" #ifdef ARCHITECTURE_x86_64 diff --git a/src/video_core/shader/shader.h b/src/video_core/shader/shader.h index a469e294b..d52682479 100644 --- a/src/video_core/shader/shader.h +++ b/src/video_core/shader/shader.h @@ -12,8 +12,8 @@ #include "common/common_funcs.h" #include "common/common_types.h" #include "common/vector_math.h" -#include "video_core/pica.h" #include "video_core/pica_types.h" +#include "video_core/regs.h" using nihstro::RegisterType; using nihstro::SourceRegister; |