X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FDirectionalLighting.hpp;h=e42d2cfa61e64f23b2b5f20e4451879a55b19030;hb=549646ac3e5bede5e77031f773649edf8de83608;hp=df89053cd7e342df9d6bfcfd8ef6197fa3decb92;hpb=b7d09e1e35ef90282c97509e0020b20db3c7ea9f;p=blank.git diff --git a/src/graphics/DirectionalLighting.hpp b/src/graphics/DirectionalLighting.hpp index df89053..e42d2cf 100644 --- a/src/graphics/DirectionalLighting.hpp +++ b/src/graphics/DirectionalLighting.hpp @@ -17,6 +17,7 @@ public: void Activate() noexcept; void SetLightDirection(const glm::vec3 &) noexcept; + void SetLightColor(const glm::vec3 &) noexcept; void SetFogDensity(float) noexcept; @@ -33,11 +34,6 @@ public: private: Program program; - glm::vec3 light_direction; - glm::vec3 light_color; - - float fog_density; - glm::mat4 projection; glm::mat4 view; glm::mat4 vp;