summaryrefslogtreecommitdiffstats
path: root/src/amd
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2018-12-14 10:23:22 +0100
committerSamuel Pitoiset <[email protected]>2018-12-17 17:51:48 +0100
commit445867c80d5363a60bc17e4beff6016c8c9b5221 (patch)
tree80dae3e8737a27d0d46d379db724efaedd81c908 /src/amd
parentcae373117cbf06c79916473a58fc8f60e2ab21ee (diff)
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 <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r--src/amd/vulkan/radv_extensions.py2
1 files changed, 1 insertions, 1 deletions
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);
}
""")