Lines Matching refs:queueCount
569 uint32_t queueCount; in CreateVkBackendContext() local
570 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr); in CreateVkBackendContext()
571 if (!queueCount) { in CreateVkBackendContext()
577 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties)); in CreateVkBackendContext()
581 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps); in CreateVkBackendContext()
584 uint32_t graphicsQueueIndex = queueCount; in CreateVkBackendContext()
585 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
591 if (graphicsQueueIndex == queueCount) { in CreateVkBackendContext()
598 uint32_t presentQueueIndex = queueCount; in CreateVkBackendContext()
600 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
606 if (presentQueueIndex == queueCount) { in CreateVkBackendContext()