diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-27 21:44:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-27 21:44:29 +0200 |
commit | f96ded98150cdfd3b591cc973317cf5c14224a9a (patch) | |
tree | 56cb1928957d20b7ed826debb33f6b94a6ce05cd /src/video_core | |
parent | Merge pull request #1162 from ogniK5377/ttf-plu (diff) | |
parent | debug_utils: Remove unused includes (diff) | |
download | yuzu-f96ded98150cdfd3b591cc973317cf5c14224a9a.tar yuzu-f96ded98150cdfd3b591cc973317cf5c14224a9a.tar.gz yuzu-f96ded98150cdfd3b591cc973317cf5c14224a9a.tar.bz2 yuzu-f96ded98150cdfd3b591cc973317cf5c14224a9a.tar.lz yuzu-f96ded98150cdfd3b591cc973317cf5c14224a9a.tar.xz yuzu-f96ded98150cdfd3b591cc973317cf5c14224a9a.tar.zst yuzu-f96ded98150cdfd3b591cc973317cf5c14224a9a.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 | 14 |
2 files changed, 3 insertions, 26 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 9382a75e5..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 { @@ -46,7 +38,7 @@ public: class BreakPointObserver { public: /// Constructs the object such that it observes events of the given DebugContext. - BreakPointObserver(std::shared_ptr<DebugContext> debug_context) + explicit BreakPointObserver(std::shared_ptr<DebugContext> debug_context) : context_weak(debug_context) { std::unique_lock<std::mutex> lock(debug_context->breakpoint_mutex); debug_context->breakpoint_observers.push_back(this); @@ -141,8 +133,8 @@ public: } // TODO: Evaluate if access to these members should be hidden behind a public interface. - std::array<BreakPoint, (int)Event::NumEvents> breakpoints; - Event active_breakpoint; + std::array<BreakPoint, static_cast<int>(Event::NumEvents)> breakpoints; + Event active_breakpoint{}; bool at_breakpoint = false; private: |