X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fcamera.hpp;fp=src%2Fcamera.hpp;h=805109c313af3a8f0fd692448e02c7bab7190b0c;hb=41e0223ec090142bf03066f4f5fc1f5005095072;hp=3adb800ce344b03da6a2261d5486c2ef4fd58365;hpb=66d7cf56cfbb565dd4700d94e5f338a39a40edeb;p=blank.git diff --git a/src/camera.hpp b/src/camera.hpp index 3adb800..805109c 100644 --- a/src/camera.hpp +++ b/src/camera.hpp @@ -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; };