1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-11-30 04:24:11 +01:00

[dxbc] Enable array texture hack for Dishonored 2

Partially fixes shadow rendering issues.
This commit is contained in:
Philip Rebohle 2018-04-23 11:09:48 +02:00
parent 01147492d5
commit a5c43b5e59

View File

@ -5,7 +5,8 @@
namespace dxvk {
const static std::unordered_map<std::string, DxbcOptions> g_dxbcAppOptions = {{
{ "ManiaPlanet.exe", DxbcOption::ForceTex2DArray },
{ "Dishonored2.exe", DxbcOptions(DxbcOption::ForceTex2DArray) },
{ "ManiaPlanet.exe", DxbcOptions(DxbcOption::ForceTex2DArray) },
}};