From: Alex Smith Date: Tue, 6 Jun 2017 09:42:41 +0000 (+0100) Subject: anv: Set driver version to Mesa version X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59c1797d560bfd3172427128ef8455d416b1cdb0;p=mesa.git anv: Set driver version to Mesa version As already done by RADV. v2: Move version calculation function to src/vulkan/util to share with RADV. Signed-off-by: Alex Smith Reviewed-by: Emil Velikov Reviewed-by: Eric Engestrom Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 52e5d7b0252..f5d97921d3d 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -883,7 +883,7 @@ void anv_GetPhysicalDeviceProperties( *pProperties = (VkPhysicalDeviceProperties) { .apiVersion = VK_MAKE_VERSION(1, 0, 42), - .driverVersion = 1, + .driverVersion = vk_get_driver_version(), .vendorID = 0x8086, .deviceID = pdevice->chipset_id, .deviceType = VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU,