summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/graphics_framebuffer.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2015-09-11 00:23:00 -0400
committerGravatar Lioncash2015-09-11 00:57:24 -0400
commitabe5bb4019f84b5bcb43c581f1258b3a44f1f2c7 (patch)
tree9307673c985a0338efb8a409403b9ec90684005d /src/citra_qt/debugger/graphics_framebuffer.cpp
parentMerge pull request #1130 from lioncash/block (diff)
downloadyuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.gz
yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.tar.xz
yuzu-abe5bb4019f84b5bcb43c581f1258b3a44f1f2c7.zip
citra_qt: Reorganize headers
Diffstat (limited to 'src/citra_qt/debugger/graphics_framebuffer.cpp')
-rw-r--r--src/citra_qt/debugger/graphics_framebuffer.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/citra_qt/debugger/graphics_framebuffer.cpp b/src/citra_qt/debugger/graphics_framebuffer.cpp
index 39eefbf75..80b32eaff 100644
--- a/src/citra_qt/debugger/graphics_framebuffer.cpp
+++ b/src/citra_qt/debugger/graphics_framebuffer.cpp
@@ -9,18 +9,17 @@
9#include <QPushButton> 9#include <QPushButton>
10#include <QSpinBox> 10#include <QSpinBox>
11 11
12#include "citra_qt/debugger/graphics_framebuffer.h"
13#include "citra_qt/util/spinbox.h"
14
12#include "common/color.h" 15#include "common/color.h"
13 16
14#include "core/hw/gpu.h"
15#include "core/memory.h" 17#include "core/memory.h"
18#include "core/hw/gpu.h"
16 19
17#include "video_core/pica.h" 20#include "video_core/pica.h"
18#include "video_core/utils.h" 21#include "video_core/utils.h"
19 22
20#include "graphics_framebuffer.h"
21
22#include "util/spinbox.h"
23
24GraphicsFramebufferWidget::GraphicsFramebufferWidget(std::shared_ptr<Pica::DebugContext> debug_context, 23GraphicsFramebufferWidget::GraphicsFramebufferWidget(std::shared_ptr<Pica::DebugContext> debug_context,
25 QWidget* parent) 24 QWidget* parent)
26 : BreakPointObserverDock(debug_context, tr("Pica Framebuffer"), parent), 25 : BreakPointObserverDock(debug_context, tr("Pica Framebuffer"), parent),