summaryrefslogtreecommitdiff
path: root/src/video_core/buffer_cache
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2020-02-19 13:40:37 -0400
committerGravatar Fernando Sahmkow2020-04-22 11:36:16 -0400
commitb7bc3c25496849661846f2fe42f591f2a81fbc87 (patch)
tree5c65f286d0ac58dfd46a42325a71548f20522f71 /src/video_core/buffer_cache
parentBufferCache: Refactor async managing. (diff)
downloadyuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.tar.gz
yuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.tar.xz
yuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.zip
FenceManager: Manage syncpoints and rename fences to semaphores.
Diffstat (limited to 'src/video_core/buffer_cache')
-rw-r--r--src/video_core/buffer_cache/buffer_cache.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/buffer_cache/buffer_cache.h b/src/video_core/buffer_cache/buffer_cache.h
index 06fb931d7..54c75ca4e 100644
--- a/src/video_core/buffer_cache/buffer_cache.h
+++ b/src/video_core/buffer_cache/buffer_cache.h
@@ -229,6 +229,13 @@ public:
229 return true; 229 return true;
230 } 230 }
231 231
232 bool HasUncommitedFlushes() {
233 if (uncommited_flushes) {
234 return true;
235 }
236 return false;
237 }
238
232 void PopAsyncFlushes() { 239 void PopAsyncFlushes() {
233 if (commited_flushes.empty()) { 240 if (commited_flushes.empty()) {
234 return; 241 return;