fix(graphics/adv): Ensure STPE is auto-disabled

Games appear to have horrendous VRAM leaking with this setting enabled. By default, this setting was turned on, leaving users without any information of the setting or what the setting does and seems to have adverse effects in certain titles. Disabling it so that users don't have it automatically chosen.

Signed-off-by: Collecting <collecting@noreply.localhost>
This commit is contained in:
Collecting
2026-01-26 00:26:05 +01:00
parent 0caf8866fa
commit af5eb92450

View File

@@ -549,7 +549,7 @@ struct Values {
true};
// Enable sparse texture priority eviction (evict large unmapped pages first)
SwitchableSetting<bool> sparse_texture_priority_eviction{linkage, true,
SwitchableSetting<bool> sparse_texture_priority_eviction{linkage, false,
"sparse_texture_priority_eviction",
Category::RendererAdvanced};