X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FDirectionalLighting.hpp;h=42554014c51707b3dbd4d218cf68f001e8fb39f9;hb=afc50302943e4000a8621c23960d63b208c8a400;hp=70492efc865f42f4597c3365717aacb3cd3b8ff9;hpb=7bb75960dbf9bfdee9ac865384aca81791b3da5c;p=blank.git diff --git a/src/graphics/DirectionalLighting.hpp b/src/graphics/DirectionalLighting.hpp index 70492ef..4255401 100644 --- a/src/graphics/DirectionalLighting.hpp +++ b/src/graphics/DirectionalLighting.hpp @@ -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; };