]> git.localhorst.tv Git - blank.git/blobdiff - src/camera.hpp
simple HUD
[blank.git] / src / camera.hpp
index 3adb800ce344b03da6a2261d5486c2ef4fd58365..805109c313af3a8f0fd692448e02c7bab7190b0c 100644 (file)
@@ -18,8 +18,6 @@ public:
        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);
 
@@ -46,7 +44,6 @@ private:
 
        glm::mat4 projection;
        glm::mat4 view;
-       glm::mat4 vp;
 
 };