From: Samuel Pitoiset Date: Fri, 14 Dec 2018 09:23:22 +0000 (+0100) Subject: radv: report Vulkan version 1.1.90 for real X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=445867c80d5363a60bc17e4beff6016c8c9b5221;p=mesa.git radv: report Vulkan version 1.1.90 for real I thought the value was correctly propagated, but actually not. Fixes: 2ac6d55f38c ("radv: bump reported version to 1.1.90") Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_extensions.py b/src/amd/vulkan/radv_extensions.py index 8ac8ae6698c..9952bb9c1c6 100644 --- a/src/amd/vulkan/radv_extensions.py +++ b/src/amd/vulkan/radv_extensions.py @@ -293,7 +293,7 @@ uint32_t radv_physical_device_api_version(struct radv_physical_device *dev) { if (!ANDROID && dev->rad_info.has_syncobj_wait_for_submit) - return VK_MAKE_VERSION(1, 1, 70); + return ${MAX_API_VERSION.c_vk_version()}; return VK_MAKE_VERSION(1, 0, 68); } """)