From 3b4454537892a4460af9e2791f3ecf0112ea6eb5 Mon Sep 17 00:00:00 2001 From: 10010101001 <44052322+10010101001@users.noreply.github.com> Date: Mon, 19 Feb 2024 01:14:37 +1100 Subject: [PATCH] disable taa blurring by default --- src/engine/aa.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/aa.cpp b/src/engine/aa.cpp index b5fa26a57..e9157e2d5 100644 --- a/src/engine/aa.cpp +++ b/src/engine/aa.cpp @@ -5,7 +5,7 @@ extern int intel_texalpha_bug; VARF(IDF_PERSIST, tqaa, 0, 0, 1, cleanupaa()); FVAR(0, tqaareproject, 0, 75, 1e3f); VARF(0, tqaamovemask, 0, 1, 1, cleanupaa()); -VAR(IDF_PERSIST, tqaaquincunx, 0, 1, 1); +VAR(IDF_PERSIST, tqaaquincunx, 0, 0, 1); FVAR(0, tqaacolorweightscale, 0, 0.25f, 1e3f); FVAR(0, tqaacolorweightbias, 0, 0.01f, 1); VAR(0, tqaaresolvegather, 1, 0, 0);