| 38 | } |
| 39 | |
| 40 | struct QueueFamilyIndices { |
| 41 | std::optional<uint32_t> graphicsFamily; |
| 42 | |
| 43 | bool isComplete() { |
| 44 | return graphicsFamily.has_value(); |
| 45 | } |
| 46 | }; |
| 47 | |
| 48 | class HelloTriangleApplication { |
| 49 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected