diff options
author | Alex Smith <[email protected]> | 2017-06-06 10:42:41 +0100 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-06-06 08:20:00 -0700 |
commit | 59c1797d560bfd3172427128ef8455d416b1cdb0 (patch) | |
tree | b0f710440b95f461fcd51fb1d35a91d50e0e903f /src/intel/vulkan/anv_device.c | |
parent | dc6182fa3fea0de025f29591b9fd053fffe8bf8b (diff) |
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 <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |