diff --git a/src/main.cc b/src/main.cc index 92d7945..b0245f8 100644 --- a/src/main.cc +++ b/src/main.cc @@ -54,16 +54,16 @@ struct Camera { glm::vec2 rotation; // View matrix to be sent as uniform to the vertex shader - glm::mat4 view_mat; + glm::mat4 view_mat; // Projection matrix to be sent as uniform to the vertex shader - glm::mat4 projection_mat; + glm::mat4 projection_mat; }; struct Transform { - glm::mat4 translation; - glm::mat4 rotation; - glm::mat4 scale; + glm::mat4 translation; + glm::mat4 rotation; + glm::mat4 scale; }; struct Mesh {