mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 23:40:12 +01:00
v3dv: Use the common GetDeviceQueue implementation
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13003>
This commit is contained in:
parent
c6210d5aa9
commit
01622bee5e
1 changed files with 0 additions and 14 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue