Lines Matching refs:queueCount
584 uint32_t queueCount; in CreateVkBackendContext() local
585 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr); in CreateVkBackendContext()
586 if (!queueCount) { in CreateVkBackendContext()
592 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties)); in CreateVkBackendContext()
596 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps); in CreateVkBackendContext()
599 uint32_t graphicsQueueIndex = queueCount; in CreateVkBackendContext()
600 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
606 if (graphicsQueueIndex == queueCount) { in CreateVkBackendContext()
613 uint32_t presentQueueIndex = queueCount; in CreateVkBackendContext()
615 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
621 if (presentQueueIndex == queueCount) { in CreateVkBackendContext()