summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_query_cache.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-09-24 03:24:27 +0200
committerGitHub <noreply@github.com>2020-09-24 03:24:27 +0200
commitd66b897a6d7a2a0bc0a3910fbdb7c1c6028c21d0 (patch)
tree7417466362259dae2d1a690d6aef8dcbc14a0b12 /src/video_core/renderer_opengl/gl_query_cache.cpp
parentMerge pull request #4618 from german77/GcAdapterAutoMap (diff)
parentvk_query_cache: Hack counter destructor to avoid reserving queries (diff)
downloadyuzu-d66b897a6d7a2a0bc0a3910fbdb7c1c6028c21d0.tar
yuzu-d66b897a6d7a2a0bc0a3910fbdb7c1c6028c21d0.tar.gz
yuzu-d66b897a6d7a2a0bc0a3910fbdb7c1c6028c21d0.tar.bz2
yuzu-d66b897a6d7a2a0bc0a3910fbdb7c1c6028c21d0.tar.lz
yuzu-d66b897a6d7a2a0bc0a3910fbdb7c1c6028c21d0.tar.xz
yuzu-d66b897a6d7a2a0bc0a3910fbdb7c1c6028c21d0.tar.zst
yuzu-d66b897a6d7a2a0bc0a3910fbdb7c1c6028c21d0.zip
Diffstat (limited to 'src/video_core/renderer_opengl/gl_query_cache.cpp')
-rw-r--r--src/video_core/renderer_opengl/gl_query_cache.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/renderer_opengl/gl_query_cache.cpp b/src/video_core/renderer_opengl/gl_query_cache.cpp
index 2bb8ec2b8..1a3d9720e 100644
--- a/src/video_core/renderer_opengl/gl_query_cache.cpp
+++ b/src/video_core/renderer_opengl/gl_query_cache.cpp
@@ -32,10 +32,8 @@ constexpr GLenum GetTarget(VideoCore::QueryType type) {
QueryCache::QueryCache(RasterizerOpenGL& rasterizer, Tegra::Engines::Maxwell3D& maxwell3d,
Tegra::MemoryManager& gpu_memory)
- : VideoCommon::QueryCacheBase<
- QueryCache, CachedQuery, CounterStream, HostCounter,
- std::vector<OGLQuery>>{static_cast<VideoCore::RasterizerInterface&>(rasterizer),
- maxwell3d, gpu_memory},
+ : VideoCommon::QueryCacheBase<QueryCache, CachedQuery, CounterStream, HostCounter>(
+ rasterizer, maxwell3d, gpu_memory),
gl_rasterizer{rasterizer} {}
QueryCache::~QueryCache() = default;
@@ -91,6 +89,8 @@ u64 HostCounter::BlockingQuery() const {
CachedQuery::CachedQuery(QueryCache& cache, VideoCore::QueryType type, VAddr cpu_addr, u8* host_ptr)
: VideoCommon::CachedQueryBase<HostCounter>{cpu_addr, host_ptr}, cache{&cache}, type{type} {}
+CachedQuery::~CachedQuery() = default;
+
CachedQuery::CachedQuery(CachedQuery&& rhs) noexcept
: VideoCommon::CachedQueryBase<HostCounter>(std::move(rhs)), cache{rhs.cache}, type{rhs.type} {}