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