]> git.localhorst.tv Git - blank.git/blobdiff - src/graphics/DirectionalLighting.hpp
test for Token
[blank.git] / src / graphics / DirectionalLighting.hpp
index 70492efc865f42f4597c3365717aacb3cd3b8ff9..dd76f5e67ef11702495bfd3db62b1dc5be704dd4 100644 (file)
@@ -1,10 +1,10 @@
 #ifndef BLANK_GRAPHICS_DIRECTIONALLIGHTING_HPP_
 #define BLANK_GRAPHICS_DIRECTIONALLIGHTING_HPP_
 
+#include "glm.hpp"
 #include "Program.hpp"
 
 #include <GL/glew.h>
-#include <glm/glm.hpp>
 
 
 namespace blank {
@@ -20,6 +20,7 @@ public:
 
        void SetLightDirection(const glm::vec3 &) noexcept;
        void SetLightColor(const glm::vec3 &) noexcept;
+       void SetAmbientColor(const glm::vec3 &) noexcept;
 
        void SetTexture(ArrayTexture &) noexcept;
        void SetFogDensity(float) noexcept;
@@ -47,6 +48,7 @@ private:
        GLuint sampler_handle;
        GLuint light_direction_handle;
        GLuint light_color_handle;
+       GLuint ambient_color_handle;
        GLuint fog_density_handle;
 
 };