| 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; |
nothing calls this directly
no test coverage detected