mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-30 04:24:11 +01:00
[dxbc] Disable Nvidia-specific workarounds for 396.18 and above
This commit is contained in:
parent
a2f96f9728
commit
1b6442b859
@ -9,7 +9,8 @@ namespace dxvk {
|
||||
// Apply driver-specific workarounds
|
||||
const DxvkGpuVendor vendor = static_cast<DxvkGpuVendor>(devProps.vendorID);
|
||||
|
||||
if (vendor == DxvkGpuVendor::Nvidia) {
|
||||
if (vendor == DxvkGpuVendor::Nvidia
|
||||
&& devProps.driverVersion <= VK_MAKE_VERSION(396, 18, 0)) {
|
||||
// Older versions of the driver expect the
|
||||
// coordinate vector to have an extra component
|
||||
this->addExtraDrefCoordComponent = true;
|
||||
|
Loading…
Reference in New Issue
Block a user