summaryrefslogtreecommitdiff
path: root/src/video_core/query_cache
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2023-12-31 20:55:15 +0100
committerGravatar Liam2024-01-18 21:12:30 -0500
commit590d9b7e1d875e0403fb87cfcd4a8d52c50e2b81 (patch)
treeb9eb43c5a4af892d5fda77fac241099c166c2380 /src/video_core/query_cache
parentSMMU: Fix software rendering and cleanup (diff)
downloadyuzu-590d9b7e1d875e0403fb87cfcd4a8d52c50e2b81.tar.gz
yuzu-590d9b7e1d875e0403fb87cfcd4a8d52c50e2b81.tar.xz
yuzu-590d9b7e1d875e0403fb87cfcd4a8d52c50e2b81.zip
Core: Clang format and other small issues.
Diffstat (limited to 'src/video_core/query_cache')
-rw-r--r--src/video_core/query_cache/query_cache_base.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_core/query_cache/query_cache_base.h b/src/video_core/query_cache/query_cache_base.h
index 7720456ff..3c820b5f2 100644
--- a/src/video_core/query_cache/query_cache_base.h
+++ b/src/video_core/query_cache/query_cache_base.h
@@ -15,9 +15,9 @@
15#include "common/common_types.h" 15#include "common/common_types.h"
16#include "core/memory.h" 16#include "core/memory.h"
17#include "video_core/control/channel_state_cache.h" 17#include "video_core/control/channel_state_cache.h"
18#include "video_core/host1x/gpu_device_memory_manager.h"
18#include "video_core/query_cache/query_base.h" 19#include "video_core/query_cache/query_base.h"
19#include "video_core/query_cache/types.h" 20#include "video_core/query_cache/types.h"
20#include "video_core/host1x/gpu_device_memory_manager.h"
21 21
22namespace VideoCore { 22namespace VideoCore {
23class RasterizerInterface; 23class RasterizerInterface;
@@ -50,7 +50,8 @@ public:
50 }; 50 };
51 51
52 explicit QueryCacheBase(Tegra::GPU& gpu, VideoCore::RasterizerInterface& rasterizer_, 52 explicit QueryCacheBase(Tegra::GPU& gpu, VideoCore::RasterizerInterface& rasterizer_,
53 Tegra::MaxwellDeviceMemoryManager& device_memory_, RuntimeType& runtime_); 53 Tegra::MaxwellDeviceMemoryManager& device_memory_,
54 RuntimeType& runtime_);
54 55
55 ~QueryCacheBase(); 56 ~QueryCacheBase();
56 57