From cc9266edaa35c9c4dd15f16b381665630ce01889 Mon Sep 17 00:00:00 2001 From: Blisto91 <47954800+Blisto91@users.noreply.github.com> Date: Wed, 11 Jan 2023 21:13:58 +0100 Subject: [PATCH] [util] Add config for Alien Rage Reporting a GTX 295 puts us into the highest behind the scenes graphics settings preset bucket and prevents the shadow issue with `FloatingPointRenderTargets` set to false in the lower preset bucket. NvapiHack needs to be disabled on Linux since the game pings it in the Windows system folder and want's the VendorId to match your GPU. Else the issue will still happen on Nvidia Linux --- src/util/config/config.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index fc466b53..c31c8e0f 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -696,6 +696,13 @@ namespace dxvk { { R"(\\Secret World Legends\\ClientPatcher\.exe$)", {{ { "d3d9.shaderModel", "2" }, }} }, + /* Alien Rage * + * GTX 295 & disable Hack to fix shadows */ + { R"(\\(ShippingPC-AFEARGame|ARageMP)\.exe$)", {{ + { "d3d9.customVendorId", "10de" }, + { "d3d9.customDeviceId", "05E0" }, + { "dxgi.nvapiHack", "False" }, + }} }, }};