Vulkan: Update Qualcomm driver version check
Resolves #142859 I have been informed by Qualcomm that this public version should be functional to the same degree as the one given to Jeroen for testing Pull Request: https://projects.blender.org/blender/blender/pulls/142949
This commit is contained in:
@@ -98,9 +98,9 @@ bool GPU_vulkan_is_supported_driver(VkPhysicalDevice vk_physical_device)
|
||||
* timelines that have not been provided by Blender. As Blender uses timelines for resource
|
||||
* management this resulted in resources to be destroyed, that are still in use. */
|
||||
|
||||
/* Public version 31.0.112 uses vulkan driver version 512.827.14. */
|
||||
/* Public version 31.0.112 uses vulkan driver version 512.827.0. */
|
||||
const uint32_t driver_version = vk_physical_device_properties.properties.driverVersion;
|
||||
constexpr uint32_t version_31_0_112 = VK_MAKE_VERSION(512, 827, 14);
|
||||
constexpr uint32_t version_31_0_112 = VK_MAKE_VERSION(512, 827, 0);
|
||||
if (driver_version < version_31_0_112) {
|
||||
CLOG_WARN(&LOG,
|
||||
"Detected qualcomm driver is not supported. To run the Vulkan backend "
|
||||
|
||||
Reference in New Issue
Block a user