14 #include <glm/gtc/type_ptr.hpp>
47 template<GLenum ShaderType>
54 string Link() noexcept;
59 void Use()
const noexcept;
64 void Unuse()
const noexcept;
89 void SetUniform(GLint nUniformLocation,
const T* pValue, GLsizei nCount) noexcept;
100 void SetUniform(
const GLchar* pszName,
const T* pValue, GLsizei nCount) noexcept;
109 void SetUniform(GLint nUniformLocation,
const T& value) noexcept;
118 void SetUniform(
const GLchar* pszName,
const T& value) noexcept;
141 static bool AddInclude(
const char* pszName, GLint nNameLength,
const char* pszText, GLint nTextLength) noexcept;
149 static void DispatchCompute(GLuint nGroupsX, GLuint nGroupsY, GLuint nGroupsZ) noexcept;
155 GLuint m_nProgram = std::numeric_limits<GLuint>::max();
void Init() noexcept
Init shader program.
static bool AddInclude(const char *pszName, GLint nNameLength, const char *pszText, GLint nTextLength) noexcept
Add include string.
void SetUniform(GLint nUniformLocation, const T *pValue, GLsizei nCount) noexcept
Specify the value of a uniform variable.
static void DispatchCompute(GLuint nGroupsX, GLuint nGroupsY, GLuint nGroupsZ) noexcept
Dispatch program compute.
void Unuse() const noexcept
Drop current shader.
GLuint GetBufferName() const noexcept
Get shader buffer name.
void AttachShader(shader_base< ShaderType > *pShader) noexcept
Attach shader to the program.
GLint GetParameter(GLenum eParameter) const noexcept
Get shader program parameter.
void Use() const noexcept
Use shader program.
string Link() noexcept
Link attached shaders.
GLint GetUniformLocation(const GLchar *pszName) const noexcept
Get uniform location based on it's name.