| 131 | } |
| 132 | |
| 133 | struct UniformBufferObject { |
| 134 | alignas(16) glm::mat4 model; |
| 135 | alignas(16) glm::mat4 view; |
| 136 | alignas(16) glm::mat4 proj; |
| 137 | }; |
| 138 | |
| 139 | class HelloTriangleApplication { |
| 140 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected