Lines Matching refs:queueCount
532 uint32_t queueCount; in CreateVkBackendContext() local
533 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr); in CreateVkBackendContext()
534 if (!queueCount) { in CreateVkBackendContext()
540 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties)); in CreateVkBackendContext()
544 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps); in CreateVkBackendContext()
547 uint32_t graphicsQueueIndex = queueCount; in CreateVkBackendContext()
548 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
554 if (graphicsQueueIndex == queueCount) { in CreateVkBackendContext()
561 uint32_t presentQueueIndex = queueCount; in CreateVkBackendContext()
563 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
569 if (presentQueueIndex == queueCount) { in CreateVkBackendContext()