From 6e74db4c6f069201dca857fe3847bf44f3ea87bc Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Fri, 10 Aug 2018 12:50:31 +0200 Subject: [PATCH] [util] Update default per-app quirks --- src/util/config/config.cpp | 50 +++++++++++++++++++++++++++++++------- 1 file changed, 41 insertions(+), 9 deletions(-) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index d87f2b7d..a244e178 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -11,30 +11,62 @@ namespace dxvk { const static std::unordered_map g_appDefaults = {{ + /* Dishonored 2 */ { "Dishonored2.exe", {{ { "d3d11.allowMapFlagNoWait", "True" } }} }, + /* F1 2015 */ { "F1_2015.exe", {{ { "d3d11.fakeStreamOutSupport", "True" }, }} }, + /* Far Cry 5 */ { "FarCry5.exe", {{ { "d3d11.allowMapFlagNoWait", "True" } }} }, - { "Frostpunk.exe", {{ - { "dxgi.deferSurfaceCreation", "True" }, - }} }, - { "Overwatch.exe", {{ - { "d3d11.fakeStreamOutSupport", "True" }, - }} }, - { "Wow.exe", {{ - { "dxgi.fakeDx10Support", "True" }, - }} }, + /* Final Fantasy XV */ { "ffxv_s.exe", {{ { "d3d11.fakeStreamOutSupport", "True" }, }} }, + /* Frostpunk */ + { "Frostpunk.exe", {{ + { "dxgi.deferSurfaceCreation", "True" }, + }} }, + /* Just Cause 2 (Dx10) */ + { "JustCause2.exe", {{ + { "dxgi.fakeDx10Support", "True" }, + }} }, + /* Mafia 3 */ { "mafia3.exe", {{ { "d3d11.fakeStreamOutSupport", "True" }, }} }, + /* Overwatch */ + { "Overwatch.exe", {{ + { "d3d11.fakeStreamOutSupport", "True" }, + }} }, + /* Sleeping Dogs */ + { "HKShip.exe", {{ + { "dxgi.fakeDx10Support", "True" }, + }} }, + /* Sleeping Dogs: Definitive Edition */ + { "SDHDShip.exe", {{ + { "dxgi.fakeDx10Support", "True" }, + }} }, + /* Stalker: Call of Pripyat */ + { "Stalker-COP.exe", {{ + { "dxgi.fakeDx10Support", "True" }, + }} }, + /* World of Warcraft */ + { "Wow.exe", {{ + { "dxgi.fakeDx10Support", "True" }, + }} }, + /* World of Warcraft Beta */ + { "WowB.exe", {{ + { "dxgi.fakeDx10Support", "True" }, + }} }, + /* World of Warcraft Test Branch */ + { "WowT.exe", {{ + { "dxgi.fakeDx10Support", "True" }, + }} }, }};