summaryrefslogtreecommitdiffstats
path: root/src/video_core/buffer_cache
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2022-01-16 06:34:43 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2022-03-25 01:51:52 +0100
commit9edbbf2af401f821c0be6a266e65975e3de25fb3 (patch)
tree16bc11bc0097e80e8b39e7cc990a81448f7bf059 /src/video_core/buffer_cache
parentBuffer Cache: Tune to the levels of the new GC. (diff)
downloadyuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.gz
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.bz2
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.lz
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.xz
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.tar.zst
yuzu-9edbbf2af401f821c0be6a266e65975e3de25fb3.zip
Diffstat (limited to 'src/video_core/buffer_cache')
-rw-r--r--src/video_core/buffer_cache/buffer_cache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/buffer_cache/buffer_cache.h b/src/video_core/buffer_cache/buffer_cache.h
index 644c6e57e..21bfb76a4 100644
--- a/src/video_core/buffer_cache/buffer_cache.h
+++ b/src/video_core/buffer_cache/buffer_cache.h
@@ -464,9 +464,9 @@ BufferCache<P>::BufferCache(VideoCore::RasterizerInterface& rasterizer_,
const s64 device_memory = static_cast<s64>(runtime.GetDeviceLocalMemory());
const s64 min_spacing_expected = device_memory - 1_GiB - 512_MiB;
const s64 min_spacing_critical = device_memory - 1_GiB;
- const s64 mem_tresshold = std::min(device_memory, TARGET_THRESHOLD);
- const s64 min_vacancy_expected = (6 * mem_tresshold) / 10;
- const s64 min_vacancy_critical = (3 * mem_tresshold) / 10;
+ const s64 mem_threshold = std::min(device_memory, TARGET_THRESHOLD);
+ const s64 min_vacancy_expected = (6 * mem_threshold) / 10;
+ const s64 min_vacancy_critical = (3 * mem_threshold) / 10;
minimum_memory = static_cast<u64>(
std::max(std::min(device_memory - min_vacancy_expected, min_spacing_expected),
DEFAULT_EXPECTED_MEMORY));