1 #ifndef BLANK_GRAPHICS_SKYBOXSHADER_HPP_
2 #define BLANK_GRAPHICS_SKYBOXSHADER_HPP_
14 void Activate() noexcept;
16 void SetTexture(CubeMap &) noexcept;
18 void SetProjection(const glm::mat4 &p) noexcept;
19 void SetView(const glm::mat4 &v) noexcept;
20 void SetVP(const glm::mat4 &v, const glm::mat4 &p) noexcept;
22 const glm::mat4 &Projection() const noexcept { return projection; }
23 const glm::mat4 &View() const noexcept { return view; }
24 const glm::mat4 &GetVP() const noexcept { return vp; }
34 GLuint sampler_handle;