Remove workaround disabling BDA on AMD from driver 21.3.1

This commit is contained in:
baldurk
2021-03-25 15:29:30 +00:00
parent 0b8d784730
commit 2545dfc853
+3 -2
View File
@@ -950,8 +950,9 @@ VkDriverInfo::VkDriverInfo(const VkPhysicalDeviceProperties &physProps)
if(m_Vendor == GPUVendor::AMD)
{
// not yet fully fixed
amdBDABrokenDriver = true;
// driver 21.3.1 which is vulkan version >= 2.0.179 contains the fix
if(physProps.driverVersion < VK_MAKE_VERSION(2, 0, 179))
amdBDABrokenDriver = true;
}
#endif