summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@collabora.com>2022-03-09 10:12:19 -0600
committerMarge Bot <emma+marge@anholt.net>2022-03-14 18:06:01 +0000
commita35e721162bb7dad087e75fd07fec08bc635dc96 (patch)
tree7687ba4f1cabafd116dcf7d30fa6d8444d4b9d39
parentdd9b8881e0ad84ab1e74d972a8233f5c03e7b37a (diff)
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 <boris.brezillon@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15334>
-rw-r--r--src/panfrost/vulkan/panvk_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/vulkan/panvk_device.c b/src/panfrost/vulkan/panvk_device.c
index 5421991cd3b7..362892f74b4a 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)