1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00

Allow FarCry 5 to use D3D11_MAP_FLAG_DO_NOT_WAIT (#416)

This commit is contained in:
ZeroFault 2018-06-03 14:33:08 -06:00 committed by Philip Rebohle
parent 217399926d
commit d44cc7630b

View File

@ -6,6 +6,7 @@ namespace dxvk {
const static std::unordered_map<std::string, D3D11OptionSet> g_d3d11AppOptions = {{
{ "Dishonored2.exe", D3D11OptionSet(D3D11Option::AllowMapFlagNoWait) },
{ "FarCry5.exe", D3D11OptionSet(D3D11Option::AllowMapFlagNoWait) },
{ "Fallout4.exe", D3D11OptionSet(D3D11Option::DisableGetDataFlagDoNotFlush) },
{ "Overwatch.exe", D3D11OptionSet(D3D11Option::FakeStreamOutSupport) },
}};