diff options
| author | 2017-02-12 12:33:26 -0800 | |
|---|---|---|
| committer | 2017-02-12 12:33:26 -0800 | |
| commit | 443bb3d522916f9be2d27fc8b3d7b5cc942213df (patch) | |
| tree | 5a83052ad2f5888a282d4db2ef9b9f2d4e647a60 /src/video_core/debug_utils | |
| 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.gz yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.tar.xz yuzu-443bb3d522916f9be2d27fc8b3d7b5cc942213df.zip | |
Merge pull request #2550 from yuriks/pica-refactor2
Small VideoCore cleanups
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; |