Fix an intel LG warning by orphaning text memory
[ipdf/code.git] / src / shaderprogram.h
1 #ifndef _SHADERPROGRAM_H
2 #define _SHADERPROGRAM_H
3
4 #include <vector>
5 #include "gl_core44.h"
6
7
8 namespace IPDF
9 {
10         /*
11          * The "Shader" class represents a GLSL program made from shaders. 
12          */
13         class ShaderProgram
14         {
15         public:
16                 ShaderProgram() : m_program(0) {}
17                 ~ShaderProgram();
18                 bool AttachVertexProgram(const char *src);
19                 bool AttachFragmentProgram(const char *src);
20                 bool AttachGeometryProgram(const char *src);
21                 bool Link();
22                 const void Use() const;
23                 // Unfortunately, we don't require GL 4.3/ARB_explicit_uniform_location
24                 // which would make this obsolete. One uday Mesa will support it.
25                 // NOTE: We could actually get away with this by only using UBOs, as
26                 // Mesa supports ARB_shading_language_420pack, but that'd be a bit more
27                 // work right with the way some of our uniforms are laid out at the moment.
28                 const GLint GetUniformLocation(const char *uniform_name) const;
29         private:
30                 void LazyCreateProgram();
31                 bool AttachShader(const char *src, GLenum type);
32                 GLuint m_program;
33                 struct Shader
34                 {
35                         GLenum type;
36                         GLuint obj;
37                 };
38                 std::vector<Shader> m_shaders;
39         };
40
41 }
42
43 #endif // _SHADERPROGRAM_H

UCC git Repository :: git.ucc.asn.au