diff options
| author | 2015-09-11 00:23:00 -0400 | |
|---|---|---|
| committer | 2015-09-11 00:57:24 -0400 | |
| commit | abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7 (patch) | |
| tree | 9307673c985a0338efb8a409403b9ec90684005d /src/citra_qt/debugger/graphics_tracing.cpp | |
| parent | Merge pull request #1130 from lioncash/block (diff) | |
| download | yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.gz yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.xz yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.zip | |
citra_qt: Reorganize headers
Diffstat (limited to 'src/citra_qt/debugger/graphics_tracing.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_tracing.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/citra_qt/debugger/graphics_tracing.cpp b/src/citra_qt/debugger/graphics_tracing.cpp index f80cb7493..b0bc782df 100644 --- a/src/citra_qt/debugger/graphics_tracing.cpp +++ b/src/citra_qt/debugger/graphics_tracing.cpp | |||
| @@ -4,26 +4,25 @@ | |||
| 4 | 4 | ||
| 5 | #include <memory> | 5 | #include <memory> |
| 6 | 6 | ||
| 7 | #include <boost/range/algorithm/copy.hpp> | ||
| 8 | |||
| 7 | #include <QBoxLayout> | 9 | #include <QBoxLayout> |
| 8 | #include <QComboBox> | 10 | #include <QComboBox> |
| 9 | #include <QFileDialog> | 11 | #include <QFileDialog> |
| 10 | #include <QLabel> | ||
| 11 | #include <QMessageBox> | 12 | #include <QMessageBox> |
| 12 | #include <QPushButton> | 13 | #include <QPushButton> |
| 13 | #include <QSpinBox> | ||
| 14 | 14 | ||
| 15 | #include <boost/range/algorithm/copy.hpp> | 15 | #include "citra_qt/debugger/graphics_tracing.h" |
| 16 | 16 | ||
| 17 | #include "common/common_types.h" | 17 | #include "common/common_types.h" |
| 18 | 18 | ||
| 19 | #include "core/hw/gpu.h" | 19 | #include "core/hw/gpu.h" |
| 20 | #include "core/hw/lcd.h" | 20 | #include "core/hw/lcd.h" |
| 21 | 21 | ||
| 22 | #include "video_core/pica.h" | ||
| 23 | |||
| 24 | #include "nihstro/float24.h" | 22 | #include "nihstro/float24.h" |
| 25 | 23 | ||
| 26 | #include "graphics_tracing.h" | 24 | #include "video_core/pica.h" |
| 25 | |||
| 27 | 26 | ||
| 28 | GraphicsTracingWidget::GraphicsTracingWidget(std::shared_ptr<Pica::DebugContext> debug_context, | 27 | GraphicsTracingWidget::GraphicsTracingWidget(std::shared_ptr<Pica::DebugContext> debug_context, |
| 29 | QWidget* parent) | 28 | QWidget* parent) |