update: I solved it with VkPhysicalDeviceDriverProperties in vk1.2 which support checking driver name and version in detail. But I still don’t find what the driverVersion's value means.
I want to check which driver is currently used like mesa3d or vendor proprietary blob.
the VkPhysicalDeviceProperties part of vkspec says:
driverVersion is the vendor-specified version of the driver.
The encoding of driverVersion is implementation-defined. It may not use the same encoding as apiVersion. Applications should follow information from the vendor on extracting the version information from driverVersion.
and when I print it, it only shows a series of numbers (e.g, driverVersion = 0x5801003)
So how can I map the driverVersion to the specific driver name?
And the driver version might be encoded differently by different vendors. And it might even change for different GPU of the same vendor, or even different drivers for the same GPU.
For what it’s worth, this is how I identify at least a couple of versions: