MCPcopy Create free account
hub / github.com/Overv/VulkanTutorial / isDeviceSuitable

Method isDeviceSuitable

code/04_logical_device.cpp:222–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

220 }
221
222 bool isDeviceSuitable(VkPhysicalDevice device) {
223 QueueFamilyIndices indices = findQueueFamilies(device);
224
225 return indices.isComplete();
226 }
227
228 QueueFamilyIndices findQueueFamilies(VkPhysicalDevice device) {
229 QueueFamilyIndices indices;

Callers

nothing calls this directly

Calls 1

isCompleteMethod · 0.45

Tested by

no test coverage detected