mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 07:10:15 +01:00
radv: Drop GetPhysicalDeviceQueueFamilyProperties
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15459>
This commit is contained in:
parent
8d7cbe026e
commit
205bf5d9cb
1 changed files with 0 additions and 18 deletions
|
|
@ -2450,24 +2450,6 @@ radv_get_physical_device_queue_family_properties(struct radv_physical_device *pd
|
|||
*pCount = idx;
|
||||
}
|
||||
|
||||
VKAPI_ATTR void VKAPI_CALL
|
||||
radv_GetPhysicalDeviceQueueFamilyProperties(VkPhysicalDevice physicalDevice, uint32_t *pCount,
|
||||
VkQueueFamilyProperties *pQueueFamilyProperties)
|
||||
{
|
||||
RADV_FROM_HANDLE(radv_physical_device, pdevice, physicalDevice);
|
||||
if (!pQueueFamilyProperties) {
|
||||
radv_get_physical_device_queue_family_properties(pdevice, pCount, NULL);
|
||||
return;
|
||||
}
|
||||
VkQueueFamilyProperties *properties[] = {
|
||||
pQueueFamilyProperties + 0,
|
||||
pQueueFamilyProperties + 1,
|
||||
pQueueFamilyProperties + 2,
|
||||
};
|
||||
radv_get_physical_device_queue_family_properties(pdevice, pCount, properties);
|
||||
assert(*pCount <= 3);
|
||||
}
|
||||
|
||||
static const VkQueueGlobalPriorityEXT radv_global_queue_priorities[] = {
|
||||
VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT,
|
||||
VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue