| 109 | }; |
| 110 | |
| 111 | struct UniformBufferObject { |
| 112 | alignas(16) glm::mat4 model; |
| 113 | alignas(16) glm::mat4 view; |
| 114 | alignas(16) glm::mat4 proj; |
| 115 | }; |
| 116 | |
| 117 | const std::vector<Vertex> vertices = { |
| 118 | {{-0.5f, -0.5f}, {1.0f, 0.0f, 0.0f}, {1.0f, 0.0f}}, |
nothing calls this directly
no outgoing calls
no test coverage detected