Mesa (main): v3dv: Use the common GetDeviceQueue implementation

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Sep 28 21:32:55 UTC 2021


Module: Mesa
Branch: main
Commit: 01622bee5ebd10d5da4129eaa960cb80d91a4895
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=01622bee5ebd10d5da4129eaa960cb80d91a4895

Author: Jason Ekstrand <jason at jlekstrand.net>
Date:   Thu Sep 23 12:45:28 2021 -0500

v3dv: Use the common GetDeviceQueue implementation

Reviewed-by: Iago Toral Quiroga <itoral at igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13003>

---

 src/broadcom/vulkan/v3dv_device.c | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/src/broadcom/vulkan/v3dv_device.c b/src/broadcom/vulkan/v3dv_device.c
index 190e7120024..2f2f3f7cd07 100644
--- a/src/broadcom/vulkan/v3dv_device.c
+++ b/src/broadcom/vulkan/v3dv_device.c
@@ -1861,20 +1861,6 @@ v3dv_DestroyDevice(VkDevice _device,
    vk_free2(&device->vk.alloc, pAllocator, device);
 }
 
-VKAPI_ATTR void VKAPI_CALL
-v3dv_GetDeviceQueue(VkDevice _device,
-                    uint32_t queueFamilyIndex,
-                    uint32_t queueIndex,
-                    VkQueue *pQueue)
-{
-   V3DV_FROM_HANDLE(v3dv_device, device, _device);
-
-   assert(queueIndex == 0);
-   assert(queueFamilyIndex == 0);
-
-   *pQueue = v3dv_queue_to_handle(&device->queue);
-}
-
 VKAPI_ATTR VkResult VKAPI_CALL
 v3dv_DeviceWaitIdle(VkDevice _device)
 {



More information about the mesa-commit mailing list