Lines Matching defs:pQueueFamilyPropertyCount
51 uint32_t *pQueueFamilyPropertyCount,
56 icd_term->dispatch.GetPhysicalDeviceQueueFamilyProperties(phys_dev_term->phys_dev, pQueueFamilyPropertyCount, pProperties);
327 uint32_t *pQueueFamilyPropertyCount,
346 fpGetPhysicalDeviceQueueFamilyProperties2(phys_dev_term->phys_dev, pQueueFamilyPropertyCount, pQueueFamilyProperties);
354 if (pQueueFamilyProperties == NULL || *pQueueFamilyPropertyCount == 0) {
355 // Write to pQueueFamilyPropertyCount
356 icd_term->dispatch.GetPhysicalDeviceQueueFamilyProperties(phys_dev_term->phys_dev, pQueueFamilyPropertyCount, NULL);
359 VkQueueFamilyProperties *properties = loader_stack_alloc(*pQueueFamilyPropertyCount * sizeof(VkQueueFamilyProperties));
361 *pQueueFamilyPropertyCount = 0;
368 icd_term->dispatch.GetPhysicalDeviceQueueFamilyProperties(phys_dev_term->phys_dev, pQueueFamilyPropertyCount,
370 for (uint32_t i = 0; i < *pQueueFamilyPropertyCount; ++i) {