From 9944be0be94316c33bae3895a6d8e8acc0f4cfd6 Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Thu, 14 Aug 2025 17:15:50 -0400 Subject: [PATCH] hasvk/wsi: Stop requesting signal_*_with_memory Now that we require the dma-buf sync file import/export path, these legacy paths should never be invoked so we can stop requesting them. Acked-by: Daniel Stone Acked-by: Lionel Landwerlin Part-of: --- src/intel/vulkan_hasvk/anv_wsi.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/intel/vulkan_hasvk/anv_wsi.c b/src/intel/vulkan_hasvk/anv_wsi.c index e743bd41705..c3daa408b8c 100644 --- a/src/intel/vulkan_hasvk/anv_wsi.c +++ b/src/intel/vulkan_hasvk/anv_wsi.c @@ -54,8 +54,6 @@ anv_init_wsi(struct anv_physical_device *physical_device) return result; physical_device->wsi_device.supports_modifiers = true; - physical_device->wsi_device.signal_semaphore_with_memory = true; - physical_device->wsi_device.signal_fence_with_memory = true; physical_device->vk.wsi_device = &physical_device->wsi_device;