summaryrefslogtreecommitdiff
path: root/src/yuzu/debugger/graphics
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-24 20:18:57 -0400
committerLioncash <mathew1800@gmail.com>2018-08-24 20:49:14 -0400
commitc65713832c5e71da57b31e17173fb2d1c3b7f2fd (patch)
treec4cd1cf13729652bbf739d0dc3dcf3e560bf7c06 /src/yuzu/debugger/graphics
parent1e6a209649909a5cfa599aef3a1971cb34f5e27d (diff)
debug_utils: Remove unused includes
Quite a bit of these aren't necessary directly within the debug_utils header and can be removed or included where actually necessary.
Diffstat (limited to 'src/yuzu/debugger/graphics')
-rw-r--r--src/yuzu/debugger/graphics/graphics_breakpoints.cpp1
-rw-r--r--src/yuzu/debugger/graphics/graphics_surface.cpp3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/yuzu/debugger/graphics/graphics_breakpoints.cpp b/src/yuzu/debugger/graphics/graphics_breakpoints.cpp
index eb16a38a0..fe682b3b8 100644
--- a/src/yuzu/debugger/graphics/graphics_breakpoints.cpp
+++ b/src/yuzu/debugger/graphics/graphics_breakpoints.cpp
@@ -2,6 +2,7 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
+#include <map>
#include <QLabel>
#include <QMetaType>
#include <QPushButton>
diff --git a/src/yuzu/debugger/graphics/graphics_surface.cpp b/src/yuzu/debugger/graphics/graphics_surface.cpp
index e037223c2..2b20cf5b9 100644
--- a/src/yuzu/debugger/graphics/graphics_surface.cpp
+++ b/src/yuzu/debugger/graphics/graphics_surface.cpp
@@ -11,12 +11,13 @@
#include <QPushButton>
#include <QScrollArea>
#include <QSpinBox>
+#include "common/vector_math.h"
#include "core/core.h"
+#include "core/memory.h"
#include "video_core/engines/maxwell_3d.h"
#include "video_core/gpu.h"
#include "video_core/textures/decoders.h"
#include "video_core/textures/texture.h"
-#include "video_core/utils.h"
#include "yuzu/debugger/graphics/graphics_surface.h"
#include "yuzu/util/spinbox.h"