summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger/buffer_queue_core.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-03-20 06:09:46 +0100
committerbunnei <bunneidev@gmail.com>2022-03-25 02:13:33 +0100
commite524def8c068bcd4660410117a13241e175afc9b (patch)
tree104e8be9bda8102444064f812509e6ff3f69cb9e /src/core/hle/service/nvflinger/buffer_queue_core.cpp
parenthle: nvflinger: buffer_queue_producer: DequeueBuffer: Remove unnecessary lock. (diff)
downloadyuzu-e524def8c068bcd4660410117a13241e175afc9b.tar
yuzu-e524def8c068bcd4660410117a13241e175afc9b.tar.gz
yuzu-e524def8c068bcd4660410117a13241e175afc9b.tar.bz2
yuzu-e524def8c068bcd4660410117a13241e175afc9b.tar.lz
yuzu-e524def8c068bcd4660410117a13241e175afc9b.tar.xz
yuzu-e524def8c068bcd4660410117a13241e175afc9b.tar.zst
yuzu-e524def8c068bcd4660410117a13241e175afc9b.zip
Diffstat (limited to 'src/core/hle/service/nvflinger/buffer_queue_core.cpp')
-rw-r--r--src/core/hle/service/nvflinger/buffer_queue_core.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue_core.cpp b/src/core/hle/service/nvflinger/buffer_queue_core.cpp
index 3f1ce78b0..eb93b43ee 100644
--- a/src/core/hle/service/nvflinger/buffer_queue_core.cpp
+++ b/src/core/hle/service/nvflinger/buffer_queue_core.cpp
@@ -16,6 +16,8 @@ BufferQueueCore::BufferQueueCore() : lock{mutex, std::defer_lock} {
}
}
+BufferQueueCore::~BufferQueueCore() = default;
+
void BufferQueueCore::NotifyShutdown() {
std::unique_lock lk(mutex);