Don't apply AMD MSAA workaround after 18.5.2

This commit is contained in:
baldurk
2019-01-04 18:54:19 +00:00
parent a3ff33368b
commit ab08b8e93d
+3 -2
View File
@@ -754,8 +754,9 @@ VkDriverInfo::VkDriverInfo(const VkPhysicalDeviceProperties &physProps)
#if ENABLED(RDOC_WIN32)
if(m_Vendor == GPUVendor::AMD)
{
// not fixed yet
amdStorageMSAABrokenDriver = true;
// driver 18.5.2 which is vulkan version >= 2.0.33 contains the fix
if(physProps.driverVersion < VK_MAKE_VERSION(2, 0, 33))
amdStorageMSAABrokenDriver = true;
}
#endif