X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FDirectionalLighting.hpp;h=e42d2cfa61e64f23b2b5f20e4451879a55b19030;hb=1bc6f085c53cdeaa08e2c00e821d4e2e25cae1c8;hp=df89053cd7e342df9d6bfcfd8ef6197fa3decb92;hpb=5d2da8a07411ad6417d6ed8d1be997189cf5ce89;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;