mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
[util] Update default per-app quirks
This commit is contained in:
parent
7a28f01eca
commit
6e74db4c6f
@ -11,30 +11,62 @@
|
|||||||
namespace dxvk {
|
namespace dxvk {
|
||||||
|
|
||||||
const static std::unordered_map<std::string, Config> g_appDefaults = {{
|
const static std::unordered_map<std::string, Config> g_appDefaults = {{
|
||||||
|
/* Dishonored 2 */
|
||||||
{ "Dishonored2.exe", {{
|
{ "Dishonored2.exe", {{
|
||||||
{ "d3d11.allowMapFlagNoWait", "True" }
|
{ "d3d11.allowMapFlagNoWait", "True" }
|
||||||
}} },
|
}} },
|
||||||
|
/* F1 2015 */
|
||||||
{ "F1_2015.exe", {{
|
{ "F1_2015.exe", {{
|
||||||
{ "d3d11.fakeStreamOutSupport", "True" },
|
{ "d3d11.fakeStreamOutSupport", "True" },
|
||||||
}} },
|
}} },
|
||||||
|
/* Far Cry 5 */
|
||||||
{ "FarCry5.exe", {{
|
{ "FarCry5.exe", {{
|
||||||
{ "d3d11.allowMapFlagNoWait", "True" }
|
{ "d3d11.allowMapFlagNoWait", "True" }
|
||||||
}} },
|
}} },
|
||||||
{ "Frostpunk.exe", {{
|
/* Final Fantasy XV */
|
||||||
{ "dxgi.deferSurfaceCreation", "True" },
|
|
||||||
}} },
|
|
||||||
{ "Overwatch.exe", {{
|
|
||||||
{ "d3d11.fakeStreamOutSupport", "True" },
|
|
||||||
}} },
|
|
||||||
{ "Wow.exe", {{
|
|
||||||
{ "dxgi.fakeDx10Support", "True" },
|
|
||||||
}} },
|
|
||||||
{ "ffxv_s.exe", {{
|
{ "ffxv_s.exe", {{
|
||||||
{ "d3d11.fakeStreamOutSupport", "True" },
|
{ "d3d11.fakeStreamOutSupport", "True" },
|
||||||
}} },
|
}} },
|
||||||
|
/* Frostpunk */
|
||||||
|
{ "Frostpunk.exe", {{
|
||||||
|
{ "dxgi.deferSurfaceCreation", "True" },
|
||||||
|
}} },
|
||||||
|
/* Just Cause 2 (Dx10) */
|
||||||
|
{ "JustCause2.exe", {{
|
||||||
|
{ "dxgi.fakeDx10Support", "True" },
|
||||||
|
}} },
|
||||||
|
/* Mafia 3 */
|
||||||
{ "mafia3.exe", {{
|
{ "mafia3.exe", {{
|
||||||
{ "d3d11.fakeStreamOutSupport", "True" },
|
{ "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" },
|
||||||
|
}} },
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user