summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger/buffer_queue_producer.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-03-26 07:01:03 +0100
committerbunnei <bunneidev@gmail.com>2022-03-26 07:01:03 +0100
commit25faca8ea79f13b0eaa89dc2f7a3734e3d247b1c (patch)
tree03ee7563f76eef13c2b32912aa1ff9f30053561f /src/core/hle/service/nvflinger/buffer_queue_producer.h
parenthle: service: nvflinger: buffer_queue_consumer: Use scoped_lock instead of unique_lock. (diff)
downloadyuzu-25faca8ea79f13b0eaa89dc2f7a3734e3d247b1c.tar
yuzu-25faca8ea79f13b0eaa89dc2f7a3734e3d247b1c.tar.gz
yuzu-25faca8ea79f13b0eaa89dc2f7a3734e3d247b1c.tar.bz2
yuzu-25faca8ea79f13b0eaa89dc2f7a3734e3d247b1c.tar.lz
yuzu-25faca8ea79f13b0eaa89dc2f7a3734e3d247b1c.tar.xz
yuzu-25faca8ea79f13b0eaa89dc2f7a3734e3d247b1c.tar.zst
yuzu-25faca8ea79f13b0eaa89dc2f7a3734e3d247b1c.zip
Diffstat (limited to 'src/core/hle/service/nvflinger/buffer_queue_producer.h')
-rw-r--r--src/core/hle/service/nvflinger/buffer_queue_producer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue_producer.h b/src/core/hle/service/nvflinger/buffer_queue_producer.h
index 5ddeebe0c..77fdcae8e 100644
--- a/src/core/hle/service/nvflinger/buffer_queue_producer.h
+++ b/src/core/hle/service/nvflinger/buffer_queue_producer.h
@@ -77,7 +77,7 @@ private:
std::mutex callback_mutex;
s32 next_callback_ticket{};
s32 current_callback_ticket{};
- std::condition_variable callback_condition;
+ std::condition_variable_any callback_condition;
};
} // namespace Service::android