From 16b55f5802b425cae63f722577e1e938a12617bc Mon Sep 17 00:00:00 2001 From: lizzie Date: Sun, 28 Jun 2026 06:06:42 +0000 Subject: [PATCH] bleh --- src/video_core/texture_cache/texture_cache.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index 02baea6224..5aab3ea238 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h @@ -175,8 +175,7 @@ void TextureCache

::RunGarbageCollector() { auto candidates = CollectBelow(frame_tick); for (const auto image_id : candidates) { auto& image = slot_images[image_id]; - if (lowmemorydevice && - image.info.is_sparse && + if (image.info.is_sparse && image.guest_size_bytes >= 256_MiB && image.allocation_tick < frame_tick - 3) { LOG_DEBUG(HW_GPU, "GC targeting old sparse texture at 0x{:X} ({} MiB, age: {} frames)",