diff options
author | Ricardo Garcia <[email protected]> | 2019-11-07 15:38:45 +0100 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2019-11-11 16:14:56 +0000 |
commit | 20b403aad0db5dda579de9ff31c38906b277d364 (patch) | |
tree | 6ec44af26b1c3ef343bef0b7c4f77395166df286 /src/intel/vulkan/anv_device.c | |
parent | 5b31182665f0dfc89e9ae79cc73342d8b4d7536d (diff) |
anv: Unify GetDeviceQueue and GetDeviceQueue2
Avoid duplicating some checks and code by making anv_GetDeviceQueue a
subcase of anv_GetDeviceQueue2, like radv does.
Signed-off-by: Ricardo Garcia <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 381b7ab3c41..ea1fcea82d9 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -2848,11 +2848,15 @@ void anv_GetDeviceQueue( uint32_t queueIndex, VkQueue* pQueue) { - ANV_FROM_HANDLE(anv_device, device, _device); - - assert(queueIndex == 0); + const VkDeviceQueueInfo2 info = { + .sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_INFO_2, + .pNext = NULL, + .flags = 0, + .queueFamilyIndex = queueNodeIndex, + .queueIndex = queueIndex, + }; - *pQueue = anv_queue_to_handle(&device->queue); + anv_GetDeviceQueue2(_device, &info, pQueue); } void anv_GetDeviceQueue2( |