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:
Anthony Roberts
2025-07-23 13:48:10 +02:00
parent 5e3db5fbb0
commit 6af07a8abb

View File

@@ -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 "