From 25fff7be8b125333faceca0ce98ea31341d133d3 Mon Sep 17 00:00:00 2001 From: Icenowy Zheng Date: Fri, 19 Dec 2025 23:34:01 +0800 Subject: [PATCH] pvr: advertise VK_EXT_headless_surface The CTS failure with this enabled, which is dEQP-VK.wsi.headless.swapchain.simulate_oom.* , fails on lavapipe too. So the CTS failure shouldn't be fault of powervr code, and the extension could be advertised. Signed-off-by: Icenowy Zheng --- src/imagination/vulkan/pvr_instance.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imagination/vulkan/pvr_instance.c b/src/imagination/vulkan/pvr_instance.c index 86b8db720d2..c13d331331c 100644 --- a/src/imagination/vulkan/pvr_instance.c +++ b/src/imagination/vulkan/pvr_instance.c @@ -72,7 +72,7 @@ static const struct vk_instance_extension_table pvr_instance_extensions = { .EXT_debug_report = true, .EXT_debug_utils = true, #ifndef VK_USE_PLATFORM_WIN32_KHR - .EXT_headless_surface = PVR_USE_WSI_PLATFORM && false, + .EXT_headless_surface = PVR_USE_WSI_PLATFORM, #endif };