summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-06-22 22:07:17 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-06-22 22:07:17 +0200
commitf9b940a442d50875d2b45a0f2f380ccad88670da (patch)
tree263f9c392a3be031642fe15e1f4c85f3dab91cec
parentReaper: Guarantee correct deletion. (diff)
downloadyuzu-f9b940a442d50875d2b45a0f2f380ccad88670da.tar
yuzu-f9b940a442d50875d2b45a0f2f380ccad88670da.tar.gz
yuzu-f9b940a442d50875d2b45a0f2f380ccad88670da.tar.bz2
yuzu-f9b940a442d50875d2b45a0f2f380ccad88670da.tar.lz
yuzu-f9b940a442d50875d2b45a0f2f380ccad88670da.tar.xz
yuzu-f9b940a442d50875d2b45a0f2f380ccad88670da.tar.zst
yuzu-f9b940a442d50875d2b45a0f2f380ccad88670da.zip
-rw-r--r--src/video_core/texture_cache/texture_cache.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h
index 6ee654dc1..e7f8478b4 100644
--- a/src/video_core/texture_cache/texture_cache.h
+++ b/src/video_core/texture_cache/texture_cache.h
@@ -344,6 +344,7 @@ private:
bool has_deleted_images = false;
u64 total_used_memory = 0;
+ u64 minimum_memory;
u64 expected_memory;
u64 critical_memory;
@@ -396,10 +397,12 @@ TextureCache<P>::TextureCache(Runtime& runtime_, VideoCore::RasterizerInterface&
const u64 possible_critical_memory = (device_memory * 6) / 10;
expected_memory = std::max(possible_expected_memory, DEFAULT_EXPECTED_MEMORY);
critical_memory = std::max(possible_critical_memory, DEFAULT_CRITICAL_MEMORY);
+ minimum_memory = 0;
} else {
// on OGL we can be more conservatives as the driver takes care.
expected_memory = DEFAULT_EXPECTED_MEMORY + Common::Size_512_MB;
critical_memory = DEFAULT_CRITICAL_MEMORY + Common::Size_1_GB;
+ minimum_memory = expected_memory;
}
}
@@ -470,7 +473,7 @@ void TextureCache<P>::RunGarbageCollector() {
template <class P>
void TextureCache<P>::TickFrame() {
- if (Settings::values.use_caches_gc.GetValue()) {
+ if (Settings::values.use_caches_gc.GetValue() && total_used_memory > minimum_memory) {
RunGarbageCollector();
}
sentenced_images.Tick();