diff options
| author | 2017-01-28 15:12:09 -0800 | |
|---|---|---|
| committer | 2017-02-09 00:04:24 -0800 | |
| commit | 60fc0b086f9ec8d7b955aa9b9c0094dc42ab2fb9 (patch) | |
| tree | 91878a10f8e5a81762c8b6f7b2182b990ecb1e6e /src/video_core/debug_utils | |
| parent | Pica/Regs: Use binary search to look up reg names (diff) | |
| download | yuzu-60fc0b086f9ec8d7b955aa9b9c0094dc42ab2fb9.tar.gz yuzu-60fc0b086f9ec8d7b955aa9b9c0094dc42ab2fb9.tar.xz yuzu-60fc0b086f9ec8d7b955aa9b9c0094dc42ab2fb9.zip | |
VideoCore: Split regs.h inclusions
Diffstat (limited to 'src/video_core/debug_utils')
| -rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 4 | ||||
| -rw-r--r-- | src/video_core/debug_utils/debug_utils.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index e164e83a1..47dbc8cc8 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp | |||
| @@ -32,7 +32,9 @@ | |||
| 32 | #include "video_core/pica_state.h" | 32 | #include "video_core/pica_state.h" |
| 33 | #include "video_core/pica_types.h" | 33 | #include "video_core/pica_types.h" |
| 34 | #include "video_core/rasterizer_interface.h" | 34 | #include "video_core/rasterizer_interface.h" |
| 35 | #include "video_core/regs.h" | 35 | #include "video_core/regs_rasterizer.h" |
| 36 | #include "video_core/regs_shader.h" | ||
| 37 | #include "video_core/regs_texturing.h" | ||
| 36 | #include "video_core/renderer_base.h" | 38 | #include "video_core/renderer_base.h" |
| 37 | #include "video_core/shader/shader.h" | 39 | #include "video_core/shader/shader.h" |
| 38 | #include "video_core/texture/texture_decode.h" | 40 | #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 fd94bdbb8..89e418e27 100644 --- a/src/video_core/debug_utils/debug_utils.h +++ b/src/video_core/debug_utils/debug_utils.h | |||
| @@ -17,7 +17,9 @@ | |||
| 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/regs.h" | 20 | #include "video_core/regs_rasterizer.h" |
| 21 | #include "video_core/regs_shader.h" | ||
| 22 | #include "video_core/regs_texturing.h" | ||
| 21 | 23 | ||
| 22 | namespace CiTrace { | 24 | namespace CiTrace { |
| 23 | class Recorder; | 25 | class Recorder; |