Searched defs:pQueueFamilyPropertyCount (Results 1 - 7 of 7) sorted by relevance

/external/vulkan-validation-layers/loader/
H A Dextension_manual.c368 uint32_t *pQueueFamilyPropertyCount,
373 disp->GetPhysicalDeviceQueueFamilyProperties2KHR(unwrapped_phys_dev, pQueueFamilyPropertyCount, pQueueFamilyProperties);
377 VkPhysicalDevice physicalDevice, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties2KHR *pQueueFamilyProperties) {
383 icd_term->dispatch.GetPhysicalDeviceQueueFamilyProperties2KHR(phys_dev_term->phys_dev, pQueueFamilyPropertyCount,
392 if (pQueueFamilyProperties == NULL || *pQueueFamilyPropertyCount == 0) {
393 // Write to pQueueFamilyPropertyCount
394 icd_term->dispatch.GetPhysicalDeviceQueueFamilyProperties(phys_dev_term->phys_dev, pQueueFamilyPropertyCount, NULL);
397 VkQueueFamilyProperties *properties = loader_stack_alloc(*pQueueFamilyPropertyCount * sizeof(VkQueueFamilyProperties));
399 *pQueueFamilyPropertyCount = 0;
406 icd_term->dispatch.GetPhysicalDeviceQueueFamilyProperties(phys_dev_term->phys_dev, pQueueFamilyPropertyCount,
367 GetPhysicalDeviceQueueFamilyProperties2KHR(VkPhysicalDevice physicalDevice, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties2KHR *pQueueFamilyProperties) argument
376 terminator_GetPhysicalDeviceQueueFamilyProperties2KHR( VkPhysicalDevice physicalDevice, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties2KHR *pQueueFamilyProperties) argument
[all...]
H A Dtrampoline.c606 uint32_t *pQueueFamilyPropertyCount,
611 disp->GetPhysicalDeviceQueueFamilyProperties(unwrapped_phys_dev, pQueueFamilyPropertyCount, pQueueProperties);
605 vkGetPhysicalDeviceQueueFamilyProperties(VkPhysicalDevice physicalDevice, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties *pQueueProperties) argument
H A Dloader.c5749 uint32_t *pQueueFamilyPropertyCount,
5754 icd_term->dispatch.GetPhysicalDeviceQueueFamilyProperties(phys_dev_term->phys_dev, pQueueFamilyPropertyCount, pProperties);
5748 terminator_GetPhysicalDeviceQueueFamilyProperties(VkPhysicalDevice physicalDevice, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties *pProperties) argument
/external/vulkan-validation-layers/layers/
H A Dobject_tracker_utils.cpp731 uint32_t *pQueueFamilyPropertyCount,
743 ->GetPhysicalDeviceQueueFamilyProperties(physicalDevice, pQueueFamilyPropertyCount, pQueueFamilyProperties);
747 if (instance_data->queue_family_properties.size() < *pQueueFamilyPropertyCount) {
748 instance_data->queue_family_properties.resize(*pQueueFamilyPropertyCount);
750 for (uint32_t i = 0; i < *pQueueFamilyPropertyCount; i++) {
1010 uint32_t *pQueueFamilyPropertyCount,
1022 ->GetPhysicalDeviceQueueFamilyProperties2KHR(physicalDevice, pQueueFamilyPropertyCount, pQueueFamilyProperties);
1026 if (instance_data->queue_family_properties.size() < *pQueueFamilyPropertyCount) {
1027 instance_data->queue_family_properties.resize(*pQueueFamilyPropertyCount);
1029 for (uint32_t i = 0; i < *pQueueFamilyPropertyCount;
730 GetPhysicalDeviceQueueFamilyProperties(VkPhysicalDevice physicalDevice, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties *pQueueFamilyProperties) argument
1009 GetPhysicalDeviceQueueFamilyProperties2KHR(VkPhysicalDevice physicalDevice, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties2KHR *pQueueFamilyProperties) argument
[all...]
H A Dcore_validation.cpp2080 ? "the pQueueFamilyPropertyCount was never obtained"
2087 ") is not less than any previously obtained pQueueFamilyPropertyCount from "
10900 "%s is called with non-NULL pQueueFamilyProperties before obtaining pQueueFamilyPropertyCount. It is recommended "
10901 "to first call %s with NULL pQueueFamilyProperties in order to obtain the maximal pQueueFamilyPropertyCount.",
10908 "%s is called with non-NULL pQueueFamilyProperties and pQueueFamilyPropertyCount value %" PRIu32
10909 ", but the largest previously returned pQueueFamilyPropertyCount for this physicalDevice is %" PRIu32
10910 ". It is recommended to instead receive all the properties by calling %s with pQueueFamilyPropertyCount that was "
10922 uint32_t *pQueueFamilyPropertyCount,
10924 return ValidateCommonGetPhysicalDeviceQueueFamilyProperties(instance_data, pd_state, *pQueueFamilyPropertyCount,
10931 uint32_t *pQueueFamilyPropertyCount,
10920 PreCallValidateGetPhysicalDeviceQueueFamilyProperties(instance_layer_data *instance_data, PHYSICAL_DEVICE_STATE *pd_state, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties *pQueueFamilyProperties) argument
10929 PreCallValidateGetPhysicalDeviceQueueFamilyProperties2KHR(instance_layer_data *instance_data, PHYSICAL_DEVICE_STATE *pd_state, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties2KHR *pQueueFamilyProperties) argument
10977 GetPhysicalDeviceQueueFamilyProperties(VkPhysicalDevice physicalDevice, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties *pQueueFamilyProperties) argument
10999 GetPhysicalDeviceQueueFamilyProperties2KHR(VkPhysicalDevice physicalDevice, uint32_t *pQueueFamilyPropertyCount, VkQueueFamilyProperties2KHR *pQueueFamilyProperties) argument
[all...]
/external/vulkan-validation-layers/tests/layers/
H A Dwrap_objects.cpp152 VKAPI_ATTR void VKAPI_CALL vkGetPhysicalDeviceQueueFamilyProperties(VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties* pQueueFamilyProperties) argument
156 phys_dev->inst->layer_disp.GetPhysicalDeviceQueueFamilyProperties(vk_phys_dev, pQueueFamilyPropertyCount, pQueueFamilyProperties);
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.hpp30803 getQueueFamilyProperties( uint32_t* pQueueFamilyPropertyCount, QueueFamilyProperties* pQueueFamilyProperties ) const argument
31333 getQueueFamilyProperties2KHR( uint32_t* pQueueFamilyPropertyCount, QueueFamilyProperties2KHR* pQueueFamilyProperties ) const argument
[all...]

Completed in 281 milliseconds