diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-25 02:18:57 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-25 02:49:14 +0200 |
commit | c65713832c5e71da57b31e17173fb2d1c3b7f2fd (patch) | |
tree | c4cd1cf13729652bbf739d0dc3dcf3e560bf7c06 /src/video_core | |
parent | debug_utils: Make BreakpointObserver class' constructor explicit (diff) | |
download | yuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.tar yuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.tar.gz yuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.tar.bz2 yuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.tar.lz yuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.tar.xz yuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.tar.zst yuzu-c65713832c5e71da57b31e17173fb2d1c3b7f2fd.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 15 | ||||
-rw-r--r-- | src/video_core/debug_utils/debug_utils.h | 8 |
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 @@ // Licensed under GPLv2 // Refer to the license.txt file included. -#include <algorithm> -#include <condition_variable> -#include <cstdint> -#include <cstring> -#include <fstream> -#include <map> #include <mutex> -#include <string> -#include "common/assert.h" -#include "common/bit_field.h" -#include "common/color.h" -#include "common/common_types.h" -#include "common/file_util.h" -#include "common/logging/log.h" -#include "common/math_util.h" -#include "common/vector_math.h" #include "video_core/debug_utils/debug_utils.h" namespace 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 @@ #pragma once -#include <algorithm> #include <array> #include <condition_variable> -#include <iterator> #include <list> -#include <map> #include <memory> #include <mutex> -#include <string> -#include <utility> -#include <vector> -#include "common/common_types.h" -#include "common/vector_math.h" namespace Tegra { |