diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-12 21:33:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-12 21:33:26 +0100 |
commit | 443bb3d522916f9be2d27fc8b3d7b5cc942213df (patch) | |
tree | 5a83052ad2f5888a282d4db2ef9b9f2d4e647a60 /src/video_core/shader | |
parent | citra-qt: Don't attempt to scan files with unsupported extensions (#2402) (diff) | |
parent | VideoCore: Split u64 Pica reg unions into 2 separate u32 unions (diff) | |
download | yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.tar yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.tar.gz yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.tar.bz2 yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.tar.lz yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.tar.xz yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.tar.zst yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.zip |
Diffstat (limited to 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/shader.cpp | 3 | ||||
-rw-r--r-- | src/video_core/shader/shader.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/shader/shader.cpp b/src/video_core/shader/shader.cpp index 60c5b9ad5..67ed19ba8 100644 --- a/src/video_core/shader/shader.cpp +++ b/src/video_core/shader/shader.cpp @@ -8,7 +8,8 @@ #include "common/logging/log.h" #include "common/microprofile.h" #include "video_core/pica_state.h" -#include "video_core/regs.h" +#include "video_core/regs_rasterizer.h" +#include "video_core/regs_shader.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 d52682479..38ea717ab 100644 --- a/src/video_core/shader/shader.h +++ b/src/video_core/shader/shader.h @@ -13,7 +13,8 @@ #include "common/common_types.h" #include "common/vector_math.h" #include "video_core/pica_types.h" -#include "video_core/regs.h" +#include "video_core/regs_rasterizer.h" +#include "video_core/regs_shader.h" using nihstro::RegisterType; using nihstro::SourceRegister; |