From a35e721162bb7dad087e75fd07fec08bc635dc96 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Wed, 9 Mar 2022 10:12:19 -0600 Subject: [PATCH] panvk: Stop advertising Vulkan 1.1 We're nowhere close to even having Vulkan 1.0 working yet, there's no reason to get too excited about 1.1. It just means piles more test crashes for features we're claiming to support but don't. If we want to enable more tests, we can turn on the extensions for those features once we actually have them working. Reviewed-by: Boris Brezillon Part-of: --- src/panfrost/vulkan/panvk_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/vulkan/panvk_device.c b/src/panfrost/vulkan/panvk_device.c index 5421991cd3b..362892f74b4 100644 --- a/src/panfrost/vulkan/panvk_device.c +++ b/src/panfrost/vulkan/panvk_device.c @@ -123,7 +123,7 @@ static const struct debug_control panvk_debug_options[] = { #define PANVK_USE_WSI_PLATFORM #endif -#define PANVK_API_VERSION VK_MAKE_VERSION(1, 1, VK_HEADER_VERSION) +#define PANVK_API_VERSION VK_MAKE_VERSION(1, 0, VK_HEADER_VERSION) VkResult panvk_EnumerateInstanceVersion(uint32_t *pApiVersion)