summaryrefslogtreecommitdiff
path: root/src/video_core/debug_utils
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-24 20:18:57 -0400
committerGravatar Lioncash2018-08-24 20:49:14 -0400
commitc65713832c5e71da57b31e17173fb2d1c3b7f2fd (patch)
treec4cd1cf13729652bbf739d0dc3dcf3e560bf7c06 /src/video_core/debug_utils
parentdebug_utils: Make BreakpointObserver class' constructor explicit (diff)
downloadyuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.tar.gz
yuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.tar.xz
yuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.zip
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/video_core/debug_utils')
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp15
-rw-r--r--src/video_core/debug_utils/debug_utils.h8
2 files changed, 0 insertions, 23 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp
index 22d44aab2..5ffb492ea 100644
--- a/src/video_core/debug_utils/debug_utils.cpp
+++ b/src/video_core/debug_utils/debug_utils.cpp
@@ -2,23 +2,8 @@
2// Licensed under GPLv2 2// Licensed under GPLv2
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <algorithm>
6#include <condition_variable>
7#include <cstdint>
8#include <cstring>
9#include <fstream>
10#include <map>
11#include <mutex> 5#include <mutex>
12#include <string>
13 6
14#include "common/assert.h"
15#include "common/bit_field.h"
16#include "common/color.h"
17#include "common/common_types.h"
18#include "common/file_util.h"
19#include "common/logging/log.h"
20#include "common/math_util.h"
21#include "common/vector_math.h"
22#include "video_core/debug_utils/debug_utils.h" 7#include "video_core/debug_utils/debug_utils.h"
23 8
24namespace Tegra { 9namespace Tegra {
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h
index 427ca154c..c235faf46 100644
--- a/src/video_core/debug_utils/debug_utils.h
+++ b/src/video_core/debug_utils/debug_utils.h
@@ -4,19 +4,11 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <algorithm>
8#include <array> 7#include <array>
9#include <condition_variable> 8#include <condition_variable>
10#include <iterator>
11#include <list> 9#include <list>
12#include <map>
13#include <memory> 10#include <memory>
14#include <mutex> 11#include <mutex>
15#include <string>
16#include <utility>
17#include <vector>
18#include "common/common_types.h"
19#include "common/vector_math.h"
20 12
21namespace Tegra { 13namespace Tegra {
22 14