glcxx: A Modern C++ Interface to OpenGL Object Management
Program.hpp
Go to the documentation of this file.
1 
6 #ifndef GLCXX_PROGRAM_HPP
7 #define GLCXX_PROGRAM_HPP
8 
9 #include <initializer_list>
10 #include <memory>
11 #include "glcxx/Shader.hpp"
12 
13 namespace glcxx
14 {
18  class Program
19  {
20  public:
24  Program();
25 
29  ~Program();
30 
36  GLuint id() const { return m_id; }
37 
41  void use() const { glUseProgram(m_id); }
42 
53  template <typename... Shaders>
54  void build(Shaders... shaders)
55  {
56  _build(shaders...);
57  }
58 
64  void attach_shader(const Shader & shader) const
65  {
66  glAttachShader(m_id, shader.id());
67  }
68 
74  void attach_shader(std::unique_ptr<Shader> shader) const
75  {
76  glAttachShader(m_id, shader->id());
77  }
78 
84  void attach_shader(std::shared_ptr<Shader> shader) const
85  {
86  glAttachShader(m_id, shader->id());
87  }
88 
92  void link() const;
93 
101  GLint get_uniform_location(const char * uniform_name)
102  {
103  return glGetUniformLocation(m_id, uniform_name);
104  }
105 
115  template <typename... Args>
116  static std::shared_ptr<Program>
117  create(Args... args)
118  {
119  std::shared_ptr<Program> program = std::make_shared<Program>();
120  program->build(args...);
121  return program;
122  }
123 
124  protected:
128  GLuint m_id;
129 
133  void allocate();
134 
138  void _build() const
139  {
140  link();
141  }
142 
146  template <typename... Shaders>
147  void _build(const Shader & shader, Shaders... args) const
148  {
149  attach_shader(shader);
150  _build(args...);
151  }
152 
156  template <typename... Shaders>
157  void _build(std::unique_ptr<Shader> shader, Shaders... args) const
158  {
159  attach_shader(shader);
160  _build(args...);
161  }
162 
166  template <typename... Shaders>
167  void _build(std::shared_ptr<Shader> shader, Shaders... args) const
168  {
169  attach_shader(shader);
170  _build(args...);
171  }
172 
176  template <typename... Shaders>
177  void _build(const char * attribute_name, GLuint index, Shaders... args) const
178  {
179  glBindAttribLocation(m_id, index, attribute_name);
180  _build(args...);
181  }
182  };
183 };
184 
185 #endif
C++ wrapper for an OpenGL shader object.
Definition: Shader.hpp:17
GLuint id() const
Get the shader object&#39;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
Definition: Array.cpp:4
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&#39;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&#39;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