diff options
author | Chad Versace <[email protected]> | 2017-01-25 12:12:19 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-01-25 19:18:46 -0800 |
commit | cd03021c83c8f0060cac7a7a98b94726a69fdffa (patch) | |
tree | 33e2f889024583fbee371d2b0b25f75051b3bfa0 | |
parent | 582619009514a4b7320037a52252ec3eda65ce5e (diff) |
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 <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_device.c | 26 |
1 files 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( |