From d6bddf23bdd3874da4d255732a5132d20fda5ede Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 22 Jun 2026 21:14:25 -0400 Subject: feat: add RDNA2 pre10 FSR4 variant --- src/utils/constants.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/utils') diff --git a/src/utils/constants.ts b/src/utils/constants.ts index b873b61..bb78a79 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -75,6 +75,11 @@ export const FSR4_VARIANT_OPTIONS = [ label: "4.1.1 official for RDNA 3/4", hint: "Uses the native 0.9.3 upscaler plus the official amdxcffx64.dll override for RDNA 3/4.", }, + { + value: "rdna2-valve-411-pre10", + label: "4.1.1 Valve RDNA2 compatibility", + hint: "Uses the pre10 OptiScaler injector, native 0.9.3 upscaler, Valve amdxcffx64.dll, and forces FSR4 model 2.", + }, ] as const; export type Fsr4VariantValue = typeof FSR4_VARIANT_OPTIONS[number]["value"]; -- cgit v1.2.3 From 9de1dfaa92e39e9cbfbed2b17ddca335e02b4393 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Tue, 23 Jun 2026 09:22:49 -0400 Subject: feat: relabel FSR4 compatibility profiles --- src/utils/constants.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/utils') diff --git a/src/utils/constants.ts b/src/utils/constants.ts index bb78a79..d35aaad 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -62,23 +62,23 @@ export const DEFAULT_PROXY_DLL: ProxyDllValue = "dxgi.dll"; export const FSR4_VARIANT_OPTIONS = [ { value: "rdna23-int8", - label: "Steam Deck / RDNA2-3 optimized", + label: "4.0.2c | RDNA2/3 Mod", hint: "Uses the bundled FSR4 INT8 4.0.2c override. Recommended for Steam Deck and other non-RDNA4 systems.", }, { value: "rdna4-native", - label: "Native bundle / RDNA4", - hint: "Uses the amd_fidelityfx_upscaler_dx12.dll that ships inside the OptiScaler 0.9.3 bundle.", + label: "4.1.0 | RDNA4 Official", + hint: "Uses the AMD-supplied 4.1.0 amd_fidelityfx_upscaler_dx12.dll redistributed in the OptiScaler bundle.", }, { value: "rdna34-official-411", - label: "4.1.1 official for RDNA 3/4", - hint: "Uses the native 0.9.3 upscaler plus the official amdxcffx64.dll override for RDNA 3/4.", + label: "4.1.1 | RDNA3/4 Official", + hint: "Uses the 4.1.0 native upscaler plus the official 4.1.1 amdxcffx64.dll override for RDNA 3/4.", }, { value: "rdna2-valve-411-pre10", - label: "4.1.1 Valve RDNA2 compatibility", - hint: "Uses the pre10 OptiScaler injector, native 0.9.3 upscaler, Valve amdxcffx64.dll, and forces FSR4 model 2.", + label: "4.1.1 | RDNA2 Mod", + hint: "Uses the pre10 OptiScaler injector, 4.1.0 native upscaler, Valve 4.1.1 amdxcffx64.dll, and forces FSR4 model 2.", }, ] as const; -- cgit v1.2.3 From fd5d2de4144ee165e4985bd65dd9037361c730d3 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Fri, 26 Jun 2026 11:54:58 -0400 Subject: fix: complete RDNA2 pre10 4.1.1 variant --- src/utils/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils') diff --git a/src/utils/constants.ts b/src/utils/constants.ts index d35aaad..13bf505 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -78,7 +78,7 @@ export const FSR4_VARIANT_OPTIONS = [ { value: "rdna2-valve-411-pre10", label: "4.1.1 | RDNA2 Mod", - hint: "Uses the pre10 OptiScaler injector, 4.1.0 native upscaler, Valve 4.1.1 amdxcffx64.dll, and forces FSR4 model 2.", + hint: "Uses the pre10 OptiScaler injector, 4.1.0 native upscaler, Valve 4.1.1 amdxcffx64.dll, old amdxc64.dll, and RDNA2-specific INI overrides.", }, ] as const; -- cgit v1.2.3