6 #ifndef GLCXX_PROGRAM_HPP 7 #define GLCXX_PROGRAM_HPP 9 #include <initializer_list> 53 template <
typename... Shaders>
66 glAttachShader(
m_id, shader.
id());
76 glAttachShader(
m_id, shader->id());
86 glAttachShader(
m_id, shader->id());
103 return glGetUniformLocation(
m_id, uniform_name);
115 template <
typename... Args>
116 static std::shared_ptr<Program>
119 std::shared_ptr<Program> program = std::make_shared<Program>();
120 program->build(args...);
146 template <
typename... Shaders>
156 template <
typename... Shaders>
157 void _build(std::unique_ptr<Shader> shader, Shaders... args)
const 166 template <
typename... Shaders>
167 void _build(std::shared_ptr<Shader> shader, Shaders... args)
const 176 template <
typename... Shaders>
177 void _build(
const char * attribute_name, GLuint index, Shaders... args)
const 179 glBindAttribLocation(m_id, index, attribute_name);
C++ wrapper for an OpenGL shader object.
Definition: Shader.hpp:17
GLuint id() const
Get the shader object's ID.
Definition: Shader.hpp:54
C++ wrapper for an OpenGL shader object.
GLint get_uniform_location(const char *uniform_name)
Get the index of a uniform variable in the program.
Definition: Program.hpp:101
Program()
Create and allocate an OpenGL program object.
Definition: Program.cpp:7
void _build(std::unique_ptr< Shader > shader, Shaders...args) const
Internal helper to build().
Definition: Program.hpp:157
void attach_shader(std::shared_ptr< Shader > shader) const
Attach a shader to the program.
Definition: Program.hpp:84
static std::shared_ptr< Program > create(Args...args)
Factory method to construct a Program object.
Definition: Program.hpp:117
void allocate()
Allocate an OpenGL program object.
Definition: Program.cpp:41
void build(Shaders...shaders)
Utility method to attach shaders and link the program.
Definition: Program.hpp:54
void use() const
Use the program.
Definition: Program.hpp:41
GLuint m_id
The program object's ID.
Definition: Program.hpp:128
void link() const
Link the program.
Definition: Program.cpp:17
void attach_shader(const Shader &shader) const
Attach a shader to the program.
Definition: Program.hpp:64
void _build(std::shared_ptr< Shader > shader, Shaders...args) const
Internal helper to build().
Definition: Program.hpp:167
void _build() const
Internal helper to build().
Definition: Program.hpp:138
void attach_shader(std::unique_ptr< Shader > shader) const
Attach a shader to the program.
Definition: Program.hpp:74
C++ wrapper for an OpenGL program object.
Definition: Program.hpp:18
void _build(const Shader &shader, Shaders...args) const
Internal helper to build().
Definition: Program.hpp:147
GLuint id() const
Get the program object's ID.
Definition: Program.hpp:36
void _build(const char *attribute_name, GLuint index, Shaders...args) const
Internal helper to build().
Definition: Program.hpp:177
~Program()
Destroy the program object.
Definition: Program.cpp:12