X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcamera.hpp;h=805109c313af3a8f0fd692448e02c7bab7190b0c;hb=41e0223ec090142bf03066f4f5fc1f5005095072;hp=419922a39f1c3ee32578b847d5c21c7f31a3a434;hpb=4d0ef1687987a0801469c7262f81efd36636605a;p=blank.git diff --git a/src/camera.hpp b/src/camera.hpp index 419922a..805109c 100644 --- a/src/camera.hpp +++ b/src/camera.hpp @@ -14,13 +14,10 @@ class Camera public: Camera(); - ~Camera(); Camera(const Camera &) = delete; Camera &operator =(const Camera &) = delete; - glm::mat4 MakeMVP(const glm::mat4 &m) const { return vp * m; } - void Viewport(int width, int height); void Viewport(int x, int y, int width, int height); @@ -47,7 +44,6 @@ private: glm::mat4 projection; glm::mat4 view; - glm::mat4 vp; };