1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 20:52:10 +01:00

[d3d11] Fake streamout support for Final Fantasy XV

The game uses this feature only for Hairworks. This hides an error
message and allows the game to start.
This commit is contained in:
Philip Rebohle 2018-06-16 18:51:39 +02:00
parent 162c465e95
commit f519a0f2e4
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

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