]> git.localhorst.tv Git - blank.git/blobdiff - src/camera.hpp
simple HUD
[blank.git] / src / camera.hpp
index 419922a39f1c3ee32578b847d5c21c7f31a3a434..805109c313af3a8f0fd692448e02c7bab7190b0c 100644 (file)
@@ -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;
 
 };