diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-02-19 18:40:37 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-04-22 17:36:16 +0200 |
commit | b7bc3c25496849661846f2fe42f591f2a81fbc87 (patch) | |
tree | 5c65f286d0ac58dfd46a42325a71548f20522f71 /src/video_core/texture_cache | |
parent | BufferCache: Refactor async managing. (diff) | |
download | yuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.tar yuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.tar.gz yuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.tar.bz2 yuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.tar.lz yuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.tar.xz yuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.tar.zst yuzu-b7bc3c25496849661846f2fe42f591f2a81fbc87.zip |
Diffstat (limited to 'src/video_core/texture_cache')
-rw-r--r-- | src/video_core/texture_cache/texture_cache.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index e1a1edbd2..f3ca1ffd1 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h @@ -337,6 +337,13 @@ public: uncommited_flushes.reset(); } + bool HasUncommitedFlushes() { + if (uncommited_flushes) { + return true; + } + return false; + } + bool ShouldWaitAsyncFlushes() { if (commited_flushes.empty()) { return false; |