From cd03021c83c8f0060cac7a7a98b94726a69fdffa Mon Sep 17 00:00:00 2001 From: Chad Versace Date: Wed, 25 Jan 2017 12:12:19 -0800 Subject: [PATCH] anv: Refactor anv_GetPhysicalDeviceQueueFamilyProperties() Add a helper function, anv_get_queue_family_properties(), which fills the struct. This patch reduces churn in the following patch that implements vkGetPhysicalDeviceQueueFamilyProperties2KHR. Reviewed-by: Jason Ekstranad Reviewed-by: Lionel Landwerlin --- src/intel/vulkan/anv_device.c | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index b24949c5f44..84338dce812 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -640,11 +640,27 @@ void anv_GetPhysicalDeviceProperties( memcpy(pProperties->pipelineCacheUUID, pdevice->uuid, VK_UUID_SIZE); } +static void +anv_get_queue_family_properties(struct anv_physical_device *phys_dev, + VkQueueFamilyProperties *props) +{ + *props = (VkQueueFamilyProperties) { + .queueFlags = VK_QUEUE_GRAPHICS_BIT | + VK_QUEUE_COMPUTE_BIT | + VK_QUEUE_TRANSFER_BIT, + .queueCount = 1, + .timestampValidBits = 36, /* XXX: Real value here */ + .minImageTransferGranularity = (VkExtent3D) { 1, 1, 1 }, + }; +} + void anv_GetPhysicalDeviceQueueFamilyProperties( VkPhysicalDevice physicalDevice, uint32_t* pCount, VkQueueFamilyProperties* pQueueFamilyProperties) { + ANV_FROM_HANDLE(anv_physical_device, phys_dev, physicalDevice); + if (pQueueFamilyProperties == NULL) { *pCount = 1; return; @@ -659,16 +675,8 @@ void anv_GetPhysicalDeviceQueueFamilyProperties( if (*pCount == 0) return; - *pQueueFamilyProperties = (VkQueueFamilyProperties) { - .queueFlags = VK_QUEUE_GRAPHICS_BIT | - VK_QUEUE_COMPUTE_BIT | - VK_QUEUE_TRANSFER_BIT, - .queueCount = 1, - .timestampValidBits = 36, /* XXX: Real value here */ - .minImageTransferGranularity = (VkExtent3D) { 1, 1, 1 }, - }; - *pCount = 1; + anv_get_queue_family_properties(phys_dev, pQueueFamilyProperties); } void anv_GetPhysicalDeviceMemoryProperties( -- 2.30.2