summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_query_cache.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-02-14 01:11:21 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-02-14 21:38:27 +0100
commit6d3a046caa894997946736d3466855682d770d45 (patch)
treeb943fb4ae0218583ac49696e640e014b188a1e43 /src/video_core/renderer_opengl/gl_query_cache.h
parentquery_cache: Fix ambiguity in CacheAddr getter (diff)
downloadyuzu-6d3a046caa894997946736d3466855682d770d45.tar
yuzu-6d3a046caa894997946736d3466855682d770d45.tar.gz
yuzu-6d3a046caa894997946736d3466855682d770d45.tar.bz2
yuzu-6d3a046caa894997946736d3466855682d770d45.tar.lz
yuzu-6d3a046caa894997946736d3466855682d770d45.tar.xz
yuzu-6d3a046caa894997946736d3466855682d770d45.tar.zst
yuzu-6d3a046caa894997946736d3466855682d770d45.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_query_cache.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_query_cache.h b/src/video_core/renderer_opengl/gl_query_cache.h
index 99d187837..d8e7052a1 100644
--- a/src/video_core/renderer_opengl/gl_query_cache.h
+++ b/src/video_core/renderer_opengl/gl_query_cache.h
@@ -63,8 +63,10 @@ public:
explicit CachedQuery(QueryCache& cache, VideoCore::QueryType type, VAddr cpu_addr,
u8* host_ptr);
CachedQuery(CachedQuery&& rhs) noexcept;
+ CachedQuery(const CachedQuery&) = delete;
CachedQuery& operator=(CachedQuery&& rhs) noexcept;
+ CachedQuery& operator=(const CachedQuery&) = delete;
void Flush() override;