| 103 | }; |
| 104 | |
| 105 | struct UniformBufferObject { |
| 106 | alignas(16) glm::mat4 model; |
| 107 | alignas(16) glm::mat4 view; |
| 108 | alignas(16) glm::mat4 proj; |
| 109 | }; |
| 110 | |
| 111 | const std::vector<Vertex> vertices = { |
| 112 | {{-0.5f, -0.5f}, {1.0f, 0.0f, 0.0f}}, |
nothing calls this directly
no outgoing calls
no test coverage detected