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_cmdlists.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_cmdlists.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_cmdlists.cpp | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp index fa32d24b5..ab97c8d2d 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics_cmdlists.cpp | |||
| @@ -4,26 +4,24 @@ | |||
| 4 | 4 | ||
| 5 | #include <QApplication> | 5 | #include <QApplication> |
| 6 | #include <QClipboard> | 6 | #include <QClipboard> |
| 7 | #include <QComboBox> | ||
| 8 | #include <QHeaderView> | ||
| 7 | #include <QLabel> | 9 | #include <QLabel> |
| 8 | #include <QListView> | 10 | #include <QListView> |
| 9 | #include <QMainWindow> | 11 | #include <QMainWindow> |
| 10 | #include <QPushButton> | 12 | #include <QPushButton> |
| 11 | #include <QVBoxLayout> | ||
| 12 | #include <QTreeView> | ||
| 13 | #include <QHeaderView> | ||
| 14 | #include <QSpinBox> | 13 | #include <QSpinBox> |
| 15 | #include <QComboBox> | 14 | #include <QTreeView> |
| 15 | #include <QVBoxLayout> | ||
| 16 | 16 | ||
| 17 | #include "citra_qt/debugger/graphics_cmdlists.h" | ||
| 18 | #include "citra_qt/util/spinbox.h" | ||
| 17 | #include "citra_qt/util/util.h" | 19 | #include "citra_qt/util/util.h" |
| 18 | 20 | ||
| 19 | #include "common/vector_math.h" | 21 | #include "common/vector_math.h" |
| 20 | 22 | ||
| 21 | #include "video_core/debug_utils/debug_utils.h" | ||
| 22 | #include "video_core/pica.h" | 23 | #include "video_core/pica.h" |
| 23 | 24 | #include "video_core/debug_utils/debug_utils.h" | |
| 24 | #include "graphics_cmdlists.h" | ||
| 25 | |||
| 26 | #include "util/spinbox.h" | ||
| 27 | 25 | ||
| 28 | QImage LoadTexture(u8* src, const Pica::DebugUtils::TextureInfo& info) { | 26 | QImage LoadTexture(u8* src, const Pica::DebugUtils::TextureInfo& info) { |
| 29 | QImage decoded_image(info.width, info.height, QImage::Format_ARGB32); | 27 | QImage decoded_image(info.width, info.height, QImage::Format_ARGB32); |