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/debug_utils | |
| 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/debug_utils')
| -rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 2 | ||||
| -rw-r--r-- | src/video_core/debug_utils/debug_utils.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index ec8a9ee4a..e164e83a1 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp | |||
| @@ -29,10 +29,10 @@ | |||
| 29 | #include "common/math_util.h" | 29 | #include "common/math_util.h" |
| 30 | #include "common/vector_math.h" | 30 | #include "common/vector_math.h" |
| 31 | #include "video_core/debug_utils/debug_utils.h" | 31 | #include "video_core/debug_utils/debug_utils.h" |
| 32 | #include "video_core/pica.h" | ||
| 33 | #include "video_core/pica_state.h" | 32 | #include "video_core/pica_state.h" |
| 34 | #include "video_core/pica_types.h" | 33 | #include "video_core/pica_types.h" |
| 35 | #include "video_core/rasterizer_interface.h" | 34 | #include "video_core/rasterizer_interface.h" |
| 35 | #include "video_core/regs.h" | ||
| 36 | #include "video_core/renderer_base.h" | 36 | #include "video_core/renderer_base.h" |
| 37 | #include "video_core/shader/shader.h" | 37 | #include "video_core/shader/shader.h" |
| 38 | #include "video_core/texture/texture_decode.h" | 38 | #include "video_core/texture/texture_decode.h" |
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h index 44d5af462..fd94bdbb8 100644 --- a/src/video_core/debug_utils/debug_utils.h +++ b/src/video_core/debug_utils/debug_utils.h | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include <vector> | 17 | #include <vector> |
| 18 | #include "common/common_types.h" | 18 | #include "common/common_types.h" |
| 19 | #include "common/vector_math.h" | 19 | #include "common/vector_math.h" |
| 20 | #include "video_core/pica.h" | 20 | #include "video_core/regs.h" |
| 21 | 21 | ||
| 22 | namespace CiTrace { | 22 | namespace CiTrace { |
| 23 | class Recorder; | 23 | class Recorder; |