From bc8b30ba55a85e0927437aa5a1497591e09a1c25 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Thu, 17 Mar 2022 16:26:04 -0500 Subject: [PATCH] panvk: Drop QueueBindSparse Now that we've switched to the common sync/submit framework, this is implemented in runtime/vk_queue.c. We don't need to provide the stub. Reviewed-by: Boris Brezillon Part-of: --- src/panfrost/vulkan/panvk_device.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/panfrost/vulkan/panvk_device.c b/src/panfrost/vulkan/panvk_device.c index 8a7fd0d..c2458eb 100644 --- a/src/panfrost/vulkan/panvk_device.c +++ b/src/panfrost/vulkan/panvk_device.c @@ -1369,15 +1369,6 @@ panvk_BindImageMemory2(VkDevice device, } VkResult -panvk_QueueBindSparse(VkQueue _queue, - uint32_t bindInfoCount, - const VkBindSparseInfo *pBindInfo, - VkFence _fence) -{ - return VK_SUCCESS; -} - -VkResult panvk_CreateEvent(VkDevice _device, const VkEventCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, -- 2.7.4