]> git.localhorst.tv Git - blobs.git/blobdiff - src/graphics/PlanetSurface.hpp
spherical planets
[blobs.git] / src / graphics / PlanetSurface.hpp
index 178fcabac98123ad6914a8e01b45e9079f3cac4b..27bd2bc616f703a3c6823a854f583a25bfdcdd07 100644 (file)
@@ -3,8 +3,6 @@
 
 #include "Program.hpp"
 
-#include "glm.hpp"
-
 
 namespace blobs {
 namespace graphics {
@@ -30,9 +28,9 @@ public:
        void Activate() noexcept;
 
        void SetM(const glm::mat4 &m) noexcept;
+       void SetV(const glm::mat4 &v) noexcept;
        void SetVP(const glm::mat4 &v, const glm::mat4 &p) noexcept;
        void SetMVP(const glm::mat4 &m, const glm::mat4 &v, const glm::mat4 &p) noexcept;
-       void SetNormal(const glm::vec3 &) noexcept;
        void SetTexture(ArrayTexture &) noexcept;
        void SetLight(int n, const glm::vec3 &pos, const glm::vec3 &color, float strength) noexcept;
        void SetNumLights(int n) noexcept;
@@ -58,7 +56,6 @@ private:
        GLuint mv_handle;
        GLuint mvp_handle;
        GLuint sampler_handle;
-       GLuint normal_handle;
 
        GLuint num_lights_handle;
        GLuint light_handle[MAX_LIGHTS * 3];