diff options
| author | 2017-01-28 13:27:24 -0800 | |
|---|---|---|
| committer | 2017-02-04 13:59:12 -0800 | |
| commit | 5759d94b5c5b11af426668d046d206839bc5e802 (patch) | |
| tree | 971681341d1134533fd485e20cfe4863aa34ce27 /src/citra_qt/debugger | |
| 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/citra_qt/debugger')
4 files changed, 2 insertions, 4 deletions
diff --git a/src/citra_qt/debugger/graphics/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics/graphics_cmdlists.cpp index adaa18cfc..536548f36 100644 --- a/src/citra_qt/debugger/graphics/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics/graphics_cmdlists.cpp | |||
| @@ -18,8 +18,8 @@ | |||
| 18 | #include "citra_qt/util/util.h" | 18 | #include "citra_qt/util/util.h" |
| 19 | #include "common/vector_math.h" | 19 | #include "common/vector_math.h" |
| 20 | #include "video_core/debug_utils/debug_utils.h" | 20 | #include "video_core/debug_utils/debug_utils.h" |
| 21 | #include "video_core/pica.h" | ||
| 22 | #include "video_core/pica_state.h" | 21 | #include "video_core/pica_state.h" |
| 22 | #include "video_core/regs.h" | ||
| 23 | #include "video_core/texture/texture_decode.h" | 23 | #include "video_core/texture/texture_decode.h" |
| 24 | 24 | ||
| 25 | namespace { | 25 | namespace { |
diff --git a/src/citra_qt/debugger/graphics/graphics_surface.cpp b/src/citra_qt/debugger/graphics/graphics_surface.cpp index 78156d5ec..f83c1f96c 100644 --- a/src/citra_qt/debugger/graphics/graphics_surface.cpp +++ b/src/citra_qt/debugger/graphics/graphics_surface.cpp | |||
| @@ -16,8 +16,8 @@ | |||
| 16 | #include "common/color.h" | 16 | #include "common/color.h" |
| 17 | #include "core/hw/gpu.h" | 17 | #include "core/hw/gpu.h" |
| 18 | #include "core/memory.h" | 18 | #include "core/memory.h" |
| 19 | #include "video_core/pica.h" | ||
| 20 | #include "video_core/pica_state.h" | 19 | #include "video_core/pica_state.h" |
| 20 | #include "video_core/regs.h" | ||
| 21 | #include "video_core/texture/texture_decode.h" | 21 | #include "video_core/texture/texture_decode.h" |
| 22 | #include "video_core/utils.h" | 22 | #include "video_core/utils.h" |
| 23 | 23 | ||
diff --git a/src/citra_qt/debugger/graphics/graphics_tracing.cpp b/src/citra_qt/debugger/graphics/graphics_tracing.cpp index 17f1c5ce2..40d5bed51 100644 --- a/src/citra_qt/debugger/graphics/graphics_tracing.cpp +++ b/src/citra_qt/debugger/graphics/graphics_tracing.cpp | |||
| @@ -18,7 +18,6 @@ | |||
| 18 | #include "core/hw/lcd.h" | 18 | #include "core/hw/lcd.h" |
| 19 | #include "core/tracer/recorder.h" | 19 | #include "core/tracer/recorder.h" |
| 20 | #include "nihstro/float24.h" | 20 | #include "nihstro/float24.h" |
| 21 | #include "video_core/pica.h" | ||
| 22 | #include "video_core/pica_state.h" | 21 | #include "video_core/pica_state.h" |
| 23 | 22 | ||
| 24 | GraphicsTracingWidget::GraphicsTracingWidget(std::shared_ptr<Pica::DebugContext> debug_context, | 23 | GraphicsTracingWidget::GraphicsTracingWidget(std::shared_ptr<Pica::DebugContext> debug_context, |
diff --git a/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp b/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp index 6144a4607..e3f3194db 100644 --- a/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp +++ b/src/citra_qt/debugger/graphics/graphics_vertex_shader.cpp | |||
| @@ -16,7 +16,6 @@ | |||
| 16 | #include <QTreeView> | 16 | #include <QTreeView> |
| 17 | #include "citra_qt/debugger/graphics/graphics_vertex_shader.h" | 17 | #include "citra_qt/debugger/graphics/graphics_vertex_shader.h" |
| 18 | #include "citra_qt/util/util.h" | 18 | #include "citra_qt/util/util.h" |
| 19 | #include "video_core/pica.h" | ||
| 20 | #include "video_core/pica_state.h" | 19 | #include "video_core/pica_state.h" |
| 21 | #include "video_core/shader/debug_data.h" | 20 | #include "video_core/shader/debug_data.h" |
| 22 | #include "video_core/shader/shader.h" | 21 | #include "video_core/shader/shader.h" |