mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-03 13:24:20 +01:00
[utils] Report Nvidia GPUs for Far Cry 3 and Far Cry 4
Both games make assumptions about the exact clear value for UNORM render targets, which is incorrect on most Vulkan drivers.
This commit is contained in:
parent
be22756d2a
commit
d9931e3621
@ -37,10 +37,28 @@ namespace dxvk {
|
||||
{ "EvilWithinDemo.exe", {{
|
||||
{ "d3d11.dcSingleUseMode", "False" },
|
||||
}} },
|
||||
/* Far Cry 5 */
|
||||
/* Far Cry 3: Assumes clear(0.5) on an UNORM *
|
||||
* format to result in 128 on AMD and 127 on *
|
||||
* Nvidia. Most Vulkan drivers clear to 127, *
|
||||
* assuming higher values causes artifacts. */
|
||||
{ "farcry3_d3d11.exe", {{
|
||||
{ "dxgi.customVendorId", "10de" },
|
||||
}} },
|
||||
{ "fc3_blooddragon_d3d11.exe", {{
|
||||
{ "dxgi.customVendorId", "10de" },
|
||||
}} },
|
||||
/* Far Cry 4: Same as Far Cry 3 */
|
||||
{ "FarCry4.exe", {{
|
||||
{ "dxgi.customVendorId", "10de" },
|
||||
}} },
|
||||
/* Far Cry 5: Avoid CPU <-> GPU sync */
|
||||
{ "FarCry5.exe", {{
|
||||
{ "d3d11.allowMapFlagNoWait", "True" }
|
||||
}} },
|
||||
/* Far Cry Primal: Nvidia performance */
|
||||
{ "FCPrimal.exe", {{
|
||||
{ "dxgi.nvapiHack", "False" },
|
||||
} }},
|
||||
/* Frostpunk: Renders one frame with D3D9 *
|
||||
* after creating the DXGI swap chain */
|
||||
{ "Frostpunk.exe", {{
|
||||
@ -88,14 +106,6 @@ namespace dxvk {
|
||||
{ "MassEffectAndromeda.exe", {{
|
||||
{ "dxgi.nvapiHack", "False" },
|
||||
}} },
|
||||
/* Far Cry 4 */
|
||||
{ "FarCry4.exe", {{
|
||||
{ "dxgi.nvapiHack", "False" },
|
||||
}} },
|
||||
/* Far Cry Primal */
|
||||
{ "FCPrimal.exe", {{
|
||||
{ "dxgi.nvapiHack", "False" },
|
||||
}} },
|
||||
}};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user