diff options
| author | 2017-01-28 13:27:24 -0800 | |
|---|---|---|
| committer | 2017-02-04 13:59:12 -0800 | |
| commit | 5759d94b5c5b11af426668d046d206839bc5e802 (patch) | |
| tree | 971681341d1134533fd485e20cfe4863aa34ce27 /src/video_core/shader/shader.cpp | |
| parent | VideoCore: Split shader regs from Regs struct (diff) | |
| download | yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.gz yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.xz yuzu-5759d94b5c5b11af426668d046d206839bc5e802.zip | |
VideoCore: Move Regs to its own file
Diffstat (limited to 'src/video_core/shader/shader.cpp')
| -rw-r--r-- | src/video_core/shader/shader.cpp | 2 |
1 files changed, 1 insertions, 1 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 @@ | |||
| 7 | #include "common/bit_set.h" | 7 | #include "common/bit_set.h" |
| 8 | #include "common/logging/log.h" | 8 | #include "common/logging/log.h" |
| 9 | #include "common/microprofile.h" | 9 | #include "common/microprofile.h" |
| 10 | #include "video_core/pica.h" | ||
| 11 | #include "video_core/pica_state.h" | 10 | #include "video_core/pica_state.h" |
| 11 | #include "video_core/regs.h" | ||
| 12 | #include "video_core/shader/shader.h" | 12 | #include "video_core/shader/shader.h" |
| 13 | #include "video_core/shader/shader_interpreter.h" | 13 | #include "video_core/shader/shader_interpreter.h" |
| 14 | #ifdef ARCHITECTURE_x86_64 | 14 | #ifdef ARCHITECTURE_x86_64 |