From 65b7d2e8656d52c9eabf3995e2fd858ceac95127 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Mon, 14 Apr 2025 12:12:18 +0200 Subject: [PATCH] panvk: claim official conformance on v10 It's official, PanVK is Vulkan 1.1 conformant on v10. Let's make this clear. Backport-to: 25.0 Reviewed-by: Boris Brezillon Part-of: --- docs/drivers/panfrost.rst | 3 ++- src/panfrost/vulkan/panvk_physical_device.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/drivers/panfrost.rst b/docs/drivers/panfrost.rst index 9c064642427..55c0d92b226 100644 --- a/docs/drivers/panfrost.rst +++ b/docs/drivers/panfrost.rst @@ -9,7 +9,8 @@ and `Mali-G610 `__, +but *non-conformant* on other GPUs. The following hardware is currently supported: diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index c32f6d0161f..68c00505f86 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -1123,7 +1123,8 @@ panvk_physical_device_init(struct panvk_physical_device *device, if (result != VK_SUCCESS) goto fail; - vk_warn_non_conformant_implementation("panvk"); + if (arch != 10) + vk_warn_non_conformant_implementation("panvk"); struct vk_device_extension_table supported_extensions; get_device_extensions(device, &supported_extensions);