From 2412820b5c16c0d1ec9597276c893633315559fc Mon Sep 17 00:00:00 2001 From: lizzie Date: Sat, 27 Jun 2026 18:59:13 +0000 Subject: [PATCH] fix(vk): reduce staging buffer from 512_MiB to 128_MiB so specific NVIDIA drivers don't immediately OOM --- src/video_core/buffer_cache/buffer_cache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/buffer_cache/buffer_cache.cpp b/src/video_core/buffer_cache/buffer_cache.cpp index 685d24cc5..ce9040fb3 100644 --- a/src/video_core/buffer_cache/buffer_cache.cpp +++ b/src/video_core/buffer_cache/buffer_cache.cpp @@ -17,7 +17,7 @@ namespace VideoCore { static constexpr size_t DataShareBufferSize = 64_KB; -static constexpr size_t StagingBufferSize = 512_MB; +static constexpr size_t StagingBufferSize = 128_MB; static constexpr size_t DownloadBufferSize = 32_MB; static constexpr size_t UboStreamBufferSize = 64_MB; static constexpr size_t DeviceBufferSize = 128_MB;