1
0
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:
Philip Rebohle 2022-02-02 14:56:59 +01:00
parent badc53b1bb
commit 2673d74270
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -632,6 +632,12 @@ namespace dxvk {
(m_deviceInfo.core.properties.driverVersion >> 6) & 0x0ff); (m_deviceInfo.core.properties.driverVersion >> 6) & 0x0ff);
break; 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:; default:;
} }
} }