KHR_buffer_device_address is fixed in AMD driver 20.11.3

This commit is contained in:
baldurk
2020-12-02 14:08:50 +00:00
parent 9610919c16
commit 806d6fce2a
+3 -2
View File
@@ -973,8 +973,9 @@ VkDriverInfo::VkDriverInfo(const VkPhysicalDeviceProperties &physProps)
if(m_Vendor == GPUVendor::AMD)
{
// not yet fixed
amdBDABrokenDriver = true;
// driver 20.11.3 which is vulkan version >= 2.0.168 contains the fix
if(physProps.driverVersion < VK_MAKE_VERSION(2, 0, 168))
amdBDABrokenDriver = true;
}
#endif