| 241 | } |
| 242 | |
| 243 | bool isDeviceSuitable(VkPhysicalDevice device) { |
| 244 | QueueFamilyIndices indices = findQueueFamilies(device); |
| 245 | |
| 246 | return indices.isComplete(); |
| 247 | } |
| 248 | |
| 249 | QueueFamilyIndices findQueueFamilies(VkPhysicalDevice device) { |
| 250 | QueueFamilyIndices indices; |
nothing calls this directly
no test coverage detected