mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Merge pull request #2362 from lioncash/graphics
citra-qt: Move graphics debugging code into its own folder
This commit is contained in:
		
						commit
						067e15d348
					
				
					 17 changed files with 32 additions and 32 deletions
				
			
		|  | @ -6,13 +6,13 @@ set(SRCS | ||||||
|             config.cpp |             config.cpp | ||||||
|             debugger/callstack.cpp |             debugger/callstack.cpp | ||||||
|             debugger/disassembler.cpp |             debugger/disassembler.cpp | ||||||
|             debugger/graphics.cpp |             debugger/graphics/graphics.cpp | ||||||
|             debugger/graphics_breakpoint_observer.cpp |             debugger/graphics/graphics_breakpoint_observer.cpp | ||||||
|             debugger/graphics_breakpoints.cpp |             debugger/graphics/graphics_breakpoints.cpp | ||||||
|             debugger/graphics_cmdlists.cpp |             debugger/graphics/graphics_cmdlists.cpp | ||||||
|             debugger/graphics_surface.cpp |             debugger/graphics/graphics_surface.cpp | ||||||
|             debugger/graphics_tracing.cpp |             debugger/graphics/graphics_tracing.cpp | ||||||
|             debugger/graphics_vertex_shader.cpp |             debugger/graphics/graphics_vertex_shader.cpp | ||||||
|             debugger/profiler.cpp |             debugger/profiler.cpp | ||||||
|             debugger/ramview.cpp |             debugger/ramview.cpp | ||||||
|             debugger/registers.cpp |             debugger/registers.cpp | ||||||
|  | @ -39,14 +39,14 @@ set(HEADERS | ||||||
|             config.h |             config.h | ||||||
|             debugger/callstack.h |             debugger/callstack.h | ||||||
|             debugger/disassembler.h |             debugger/disassembler.h | ||||||
|             debugger/graphics.h |             debugger/graphics/graphics.h | ||||||
|             debugger/graphics_breakpoint_observer.h |             debugger/graphics/graphics_breakpoint_observer.h | ||||||
|             debugger/graphics_breakpoints.h |             debugger/graphics/graphics_breakpoints.h | ||||||
|             debugger/graphics_breakpoints_p.h |             debugger/graphics/graphics_breakpoints_p.h | ||||||
|             debugger/graphics_cmdlists.h |             debugger/graphics/graphics_cmdlists.h | ||||||
|             debugger/graphics_surface.h |             debugger/graphics/graphics_surface.h | ||||||
|             debugger/graphics_tracing.h |             debugger/graphics/graphics_tracing.h | ||||||
|             debugger/graphics_vertex_shader.h |             debugger/graphics/graphics_vertex_shader.h | ||||||
|             debugger/profiler.h |             debugger/profiler.h | ||||||
|             debugger/ramview.h |             debugger/ramview.h | ||||||
|             debugger/registers.h |             debugger/registers.h | ||||||
|  |  | ||||||
|  | @ -3,7 +3,7 @@ | ||||||
| // Refer to the license.txt file included.
 | // Refer to the license.txt file included.
 | ||||||
| 
 | 
 | ||||||
| #include <QListView> | #include <QListView> | ||||||
| #include "citra_qt/debugger/graphics.h" | #include "citra_qt/debugger/graphics/graphics.h" | ||||||
| #include "citra_qt/util/util.h" | #include "citra_qt/util/util.h" | ||||||
| 
 | 
 | ||||||
| extern GraphicsDebugger g_debugger; | extern GraphicsDebugger g_debugger; | ||||||
|  | @ -3,7 +3,7 @@ | ||||||
| // Refer to the license.txt file included.
 | // Refer to the license.txt file included.
 | ||||||
| 
 | 
 | ||||||
| #include <QMetaType> | #include <QMetaType> | ||||||
| #include "citra_qt/debugger/graphics_breakpoint_observer.h" | #include "citra_qt/debugger/graphics/graphics_breakpoint_observer.h" | ||||||
| 
 | 
 | ||||||
| BreakPointObserverDock::BreakPointObserverDock(std::shared_ptr<Pica::DebugContext> debug_context, | BreakPointObserverDock::BreakPointObserverDock(std::shared_ptr<Pica::DebugContext> debug_context, | ||||||
|                                                const QString& title, QWidget* parent) |                                                const QString& title, QWidget* parent) | ||||||
|  | @ -7,8 +7,8 @@ | ||||||
| #include <QPushButton> | #include <QPushButton> | ||||||
| #include <QTreeView> | #include <QTreeView> | ||||||
| #include <QVBoxLayout> | #include <QVBoxLayout> | ||||||
| #include "citra_qt/debugger/graphics_breakpoints.h" | #include "citra_qt/debugger/graphics/graphics_breakpoints.h" | ||||||
| #include "citra_qt/debugger/graphics_breakpoints_p.h" | #include "citra_qt/debugger/graphics/graphics_breakpoints_p.h" | ||||||
| #include "common/assert.h" | #include "common/assert.h" | ||||||
| 
 | 
 | ||||||
| BreakPointModel::BreakPointModel(std::shared_ptr<Pica::DebugContext> debug_context, QObject* parent) | BreakPointModel::BreakPointModel(std::shared_ptr<Pica::DebugContext> debug_context, QObject* parent) | ||||||
|  | @ -13,7 +13,7 @@ | ||||||
| #include <QSpinBox> | #include <QSpinBox> | ||||||
| #include <QTreeView> | #include <QTreeView> | ||||||
| #include <QVBoxLayout> | #include <QVBoxLayout> | ||||||
| #include "citra_qt/debugger/graphics_cmdlists.h" | #include "citra_qt/debugger/graphics/graphics_cmdlists.h" | ||||||
| #include "citra_qt/util/spinbox.h" | #include "citra_qt/util/spinbox.h" | ||||||
| #include "citra_qt/util/util.h" | #include "citra_qt/util/util.h" | ||||||
| #include "common/vector_math.h" | #include "common/vector_math.h" | ||||||
|  | @ -11,7 +11,7 @@ | ||||||
| #include <QPushButton> | #include <QPushButton> | ||||||
| #include <QScrollArea> | #include <QScrollArea> | ||||||
| #include <QSpinBox> | #include <QSpinBox> | ||||||
| #include "citra_qt/debugger/graphics_surface.h" | #include "citra_qt/debugger/graphics/graphics_surface.h" | ||||||
| #include "citra_qt/util/spinbox.h" | #include "citra_qt/util/spinbox.h" | ||||||
| #include "common/color.h" | #include "common/color.h" | ||||||
| #include "core/hw/gpu.h" | #include "core/hw/gpu.h" | ||||||
|  | @ -6,7 +6,7 @@ | ||||||
| 
 | 
 | ||||||
| #include <QLabel> | #include <QLabel> | ||||||
| #include <QPushButton> | #include <QPushButton> | ||||||
| #include "citra_qt/debugger/graphics_breakpoint_observer.h" | #include "citra_qt/debugger/graphics/graphics_breakpoint_observer.h" | ||||||
| 
 | 
 | ||||||
| class QComboBox; | class QComboBox; | ||||||
| class QSpinBox; | class QSpinBox; | ||||||
|  | @ -12,7 +12,7 @@ | ||||||
| #include <QMessageBox> | #include <QMessageBox> | ||||||
| #include <QPushButton> | #include <QPushButton> | ||||||
| #include <boost/range/algorithm/copy.hpp> | #include <boost/range/algorithm/copy.hpp> | ||||||
| #include "citra_qt/debugger/graphics_tracing.h" | #include "citra_qt/debugger/graphics/graphics_tracing.h" | ||||||
| #include "common/common_types.h" | #include "common/common_types.h" | ||||||
| #include "core/hw/gpu.h" | #include "core/hw/gpu.h" | ||||||
| #include "core/hw/lcd.h" | #include "core/hw/lcd.h" | ||||||
|  | @ -4,7 +4,7 @@ | ||||||
| 
 | 
 | ||||||
| #pragma once | #pragma once | ||||||
| 
 | 
 | ||||||
| #include "citra_qt/debugger/graphics_breakpoint_observer.h" | #include "citra_qt/debugger/graphics/graphics_breakpoint_observer.h" | ||||||
| 
 | 
 | ||||||
| class EmuThread; | class EmuThread; | ||||||
| 
 | 
 | ||||||
|  | @ -14,7 +14,7 @@ | ||||||
| #include <QSignalMapper> | #include <QSignalMapper> | ||||||
| #include <QSpinBox> | #include <QSpinBox> | ||||||
| #include <QTreeView> | #include <QTreeView> | ||||||
| #include "citra_qt/debugger/graphics_vertex_shader.h" | #include "citra_qt/debugger/graphics/graphics_vertex_shader.h" | ||||||
| #include "citra_qt/util/util.h" | #include "citra_qt/util/util.h" | ||||||
| #include "video_core/pica.h" | #include "video_core/pica.h" | ||||||
| #include "video_core/pica_state.h" | #include "video_core/pica_state.h" | ||||||
|  | @ -6,7 +6,7 @@ | ||||||
| 
 | 
 | ||||||
| #include <QAbstractTableModel> | #include <QAbstractTableModel> | ||||||
| #include <QTreeView> | #include <QTreeView> | ||||||
| #include "citra_qt/debugger/graphics_breakpoint_observer.h" | #include "citra_qt/debugger/graphics/graphics_breakpoint_observer.h" | ||||||
| #include "nihstro/parser_shbin.h" | #include "nihstro/parser_shbin.h" | ||||||
| #include "video_core/shader/shader.h" | #include "video_core/shader/shader.h" | ||||||
| 
 | 
 | ||||||
|  | @ -17,12 +17,12 @@ | ||||||
| #include "citra_qt/configure_dialog.h" | #include "citra_qt/configure_dialog.h" | ||||||
| #include "citra_qt/debugger/callstack.h" | #include "citra_qt/debugger/callstack.h" | ||||||
| #include "citra_qt/debugger/disassembler.h" | #include "citra_qt/debugger/disassembler.h" | ||||||
| #include "citra_qt/debugger/graphics.h" | #include "citra_qt/debugger/graphics/graphics.h" | ||||||
| #include "citra_qt/debugger/graphics_breakpoints.h" | #include "citra_qt/debugger/graphics/graphics_breakpoints.h" | ||||||
| #include "citra_qt/debugger/graphics_cmdlists.h" | #include "citra_qt/debugger/graphics/graphics_cmdlists.h" | ||||||
| #include "citra_qt/debugger/graphics_surface.h" | #include "citra_qt/debugger/graphics/graphics_surface.h" | ||||||
| #include "citra_qt/debugger/graphics_tracing.h" | #include "citra_qt/debugger/graphics/graphics_tracing.h" | ||||||
| #include "citra_qt/debugger/graphics_vertex_shader.h" | #include "citra_qt/debugger/graphics/graphics_vertex_shader.h" | ||||||
| #include "citra_qt/debugger/profiler.h" | #include "citra_qt/debugger/profiler.h" | ||||||
| #include "citra_qt/debugger/ramview.h" | #include "citra_qt/debugger/ramview.h" | ||||||
| #include "citra_qt/debugger/registers.h" | #include "citra_qt/debugger/registers.h" | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue