Searched refs:physdevCount (Results 1 – 1 of 1) sorted by relevance
758 uint32_t physdevCount = 0; in createGlobalVkEmulation() local759 ivk->vkEnumeratePhysicalDevices(sVkEmulation->instance, &physdevCount, nullptr); in createGlobalVkEmulation()760 std::vector<VkPhysicalDevice> physdevs(physdevCount); in createGlobalVkEmulation()761 ivk->vkEnumeratePhysicalDevices(sVkEmulation->instance, &physdevCount, physdevs.data()); in createGlobalVkEmulation()763 VK_COMMON_VERBOSE("Found %d Vulkan physical devices.", physdevCount); in createGlobalVkEmulation()765 if (physdevCount == 0) { in createGlobalVkEmulation()769 std::vector<VkEmulation::DeviceSupportInfo> deviceInfos(physdevCount); in createGlobalVkEmulation()771 for (int i = 0; i < physdevCount; ++i) { in createGlobalVkEmulation()952 std::vector<uint32_t> deviceScores(physdevCount, 0); in createGlobalVkEmulation()954 for (uint32_t i = 0; i < physdevCount; ++i) { in createGlobalVkEmulation()[all …]