[dxbc] Remove Nvidia driver version check

Apparently this causes a regression in Overwatch for some.
This commit is contained in:
Philip Rebohle 2018-04-11 19:44:45 +02:00
parent 140dc27ea3
commit 021ea64103
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 1 additions and 3 deletions

View File

@ -9,9 +9,7 @@ namespace dxvk {
// Apply driver-specific workarounds
const DxvkGpuVendor vendor = static_cast<DxvkGpuVendor>(devProps.vendorID);
if (vendor == DxvkGpuVendor::Nvidia
&& (devProps.driverVersion < VK_MAKE_VERSION(396, 18, 0)
|| env::getEnvVar(L"__GL_NextGenCompiler") == "0")) {
if (vendor == DxvkGpuVendor::Nvidia) {
// Older versions of the driver expect the
// coordinate vector to have an extra component
this->addExtraDrefCoordComponent = true;