mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-13 16:08:50 +01:00
[dxvk] Add version fixup for proprietary Intel drivers
This commit is contained in:
parent
badc53b1bb
commit
2673d74270
@ -632,6 +632,12 @@ namespace dxvk {
|
||||
(m_deviceInfo.core.properties.driverVersion >> 6) & 0x0ff);
|
||||
break;
|
||||
|
||||
case VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS:
|
||||
m_deviceInfo.core.properties.driverVersion = VK_MAKE_VERSION(
|
||||
m_deviceInfo.core.properties.driverVersion >> 14,
|
||||
m_deviceInfo.core.properties.driverVersion & 0x3fff, 0);
|
||||
break;
|
||||
|
||||
default:;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user