Qualcomm V0615v4 Vulkan Driver Fix Fixed Jun 2026
// Detect buggy Qualcomm driver version VkPhysicalDeviceProperties props; vkGetPhysicalDeviceProperties(physDev, &props); if (props.vendorID == 0x5143 && // Qualcomm props.driverVersion == VK_MAKE_VERSION(0, 615, 4)) // v0615v4 // Apply fix: disable GPL, use push descriptors features.graphicsPipelineLibrary = VK_FALSE; // Force use of VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC
