From de5e25898c86b8a67b12020cc562ac07a0e6971a Mon Sep 17 00:00:00 2001 From: Bas Nieuwenhuizen Date: Sun, 21 Jan 2018 16:11:48 +0100 Subject: [PATCH] radv: Implement VkGetDeviceQueue2. Reviewed-by: Dave Airlie --- src/amd/vulkan/radv_device.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index c16944e..586a6e6 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1403,15 +1403,29 @@ VkResult radv_EnumerateDeviceLayerProperties( return vk_error(VK_ERROR_LAYER_NOT_PRESENT); } +void radv_GetDeviceQueue2( + VkDevice _device, + const VkDeviceQueueInfo2* pQueueInfo, + VkQueue* pQueue) +{ + RADV_FROM_HANDLE(radv_device, device, _device); + + *pQueue = radv_queue_to_handle(&device->queues[pQueueInfo->queueFamilyIndex][pQueueInfo->queueIndex]); +} + void radv_GetDeviceQueue( VkDevice _device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue) { - RADV_FROM_HANDLE(radv_device, device, _device); + const VkDeviceQueueInfo2 info = (VkDeviceQueueInfo2) { + .sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_INFO_2, + .queueFamilyIndex = queueFamilyIndex, + .queueIndex = queueIndex + }; - *pQueue = radv_queue_to_handle(&device->queues[queueFamilyIndex][queueIndex]); + radv_GetDeviceQueue2(_device, &info, pQueue); } static void -- 2.7.4