From 502af0f86601a241bd0954cd5beecd988ff05642 Mon Sep 17 00:00:00 2001 From: Tk-Glitch Date: Fri, 12 Oct 2018 12:39:51 +0200 Subject: [PATCH] [util] Spoof AMD GPU for Dauntless and Redout. It silences some nvapi related warnings and improves performance on both titles by up to 10%. Also fixes a random crash on Redout. --- src/util/config/config.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 3352289f..badb541e 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -75,6 +75,16 @@ namespace dxvk { { "dxgi.customVendorId", "1002" }, { "dxgi.customDeviceId", "e366" }, }} }, + /* Dauntless */ + { "Dauntless-Win64-Shipping.exe", {{ + { "dxgi.customVendorId", "1002" }, + { "dxgi.customDeviceId", "e366" }, + }} }, + /* Redout */ + { "redout-Win64-Shipping.exe", {{ + { "dxgi.customVendorId", "1002" }, + { "dxgi.customDeviceId", "e366" }, + }} }, }};