Searched refs:queueCount (Results 1 – 1 of 1) sorted by relevance
221 uint32_t queueCount = 0; in setupDevice() local222 mGetPhysicalDeviceQueueFamilyProperties(mPhysicalDevice, &queueCount, nullptr); in setupDevice()223 LOG_ALWAYS_FATAL_IF(!queueCount); in setupDevice()226 std::unique_ptr<VkQueueFamilyProperties[]> queueProps(new VkQueueFamilyProperties[queueCount]); in setupDevice()227 mGetPhysicalDeviceQueueFamilyProperties(mPhysicalDevice, &queueCount, queueProps.get()); in setupDevice()232 mGraphicsQueueIndex = queueCount; in setupDevice()233 for (uint32_t i = 0; i < queueCount; i++) { in setupDevice()236 LOG_ALWAYS_FATAL_IF(queueProps[i].queueCount < kRequestedQueueCount); in setupDevice()240 LOG_ALWAYS_FATAL_IF(mGraphicsQueueIndex == queueCount); in setupDevice()