diff options
author | Lioncash <mathew1800@gmail.com> | 2015-09-11 06:23:00 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2015-09-11 06:57:24 +0200 |
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 yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.gz yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.bz2 yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.lz yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.xz yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.zst yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.zip |
Diffstat (limited to '')
-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 @@ #include <memory> +#include <boost/range/algorithm/copy.hpp> + #include <QBoxLayout> #include <QComboBox> #include <QFileDialog> -#include <QLabel> #include <QMessageBox> #include <QPushButton> -#include <QSpinBox> -#include <boost/range/algorithm/copy.hpp> +#include "citra_qt/debugger/graphics_tracing.h" #include "common/common_types.h" #include "core/hw/gpu.h" #include "core/hw/lcd.h" -#include "video_core/pica.h" - #include "nihstro/float24.h" -#include "graphics_tracing.h" +#include "video_core/pica.h" + GraphicsTracingWidget::GraphicsTracingWidget(std::shared_ptr<Pica::DebugContext> debug_context, QWidget* parent) |