qxLib
shader_program.h
Go to the documentation of this file.
1 /**
2 
3  @file shader_program.h
4  @author Khrapov
5  @date 16.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/gl/shaders.h>
12 
13 #include <glew.h>
14 #include <glm/gtc/type_ptr.hpp>
15 
16 namespace qx
17 {
18 
19 /**
20 
21  @class base_shader_program
22  @brief Shader program class
23  @details ~
24  @author Khrapov
25  @date 16.01.2020
26 
27 **/
29 {
30 public:
31  QX_NONCOPYABLE(base_shader_program);
32 
33  base_shader_program() = default;
34  base_shader_program(base_shader_program&& baseShaderProgram) noexcept;
35  ~base_shader_program() noexcept;
36 
37  /**
38  @brief Init shader program
39  **/
40  void Init() noexcept;
41 
42  /**
43  @brief Attach shader to the program
44  @tparam ShaderType - shader type
45  @param pShader - shader object pointer
46  **/
47  template<GLenum ShaderType>
48  void AttachShader(shader_base<ShaderType>* pShader) noexcept;
49 
50  /**
51  @brief Link attached shaders
52  @retval - error string or empty string if success
53  **/
54  string Link() noexcept;
55 
56  /**
57  @brief Use shader program
58  **/
59  void Use() const noexcept;
60 
61  /**
62  @brief Drop current shader
63  **/
64  void Unuse() const noexcept;
65 
66  /**
67  @brief Get shader program parameter
68  @param eParameter - shader program parameter
69  \see https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgram.xhtml
70  @retval - shader program parameter
71  **/
72  GLint GetParameter(GLenum eParameter) const noexcept;
73 
74  /**
75  @brief Get shader buffer name
76  @retval - shader buffer name
77  **/
78  GLuint GetBufferName() const noexcept;
79 
80  /**
81  @brief Specify the value of a uniform variable
82  @tparam T - parameter type
83  @param nUniformLocation - the location of the uniform variable to be modified
84  @param pValue - a pointer to an array of count values that will be
85  used to update the specified uniform variable.
86  @param nCount - number of values that are to be modified.
87  **/
88  template<class T>
89  void SetUniform(GLint nUniformLocation, const T* pValue, GLsizei nCount) noexcept;
90 
91  /**
92  @brief Specify the value of a uniform variable
93  @tparam T - parameter type
94  @param pszName - the name of the uniform variable to be modified.
95  @param pValue - a pointer to an array of count values that will be
96  used to update the specified uniform variable.
97  @param nCount - number of values that are to be modified.
98  **/
99  template<class T>
100  void SetUniform(const GLchar* pszName, const T* pValue, GLsizei nCount) noexcept;
101 
102  /**
103  @brief Specify the value of a uniform variable
104  @tparam T - parameter type
105  @param nUniformLocation - the location of the uniform variable to be modified
106  @param value - the value of a uniform variable
107  **/
108  template<class T>
109  void SetUniform(GLint nUniformLocation, const T& value) noexcept;
110 
111  /**
112  @brief Specify the value of a uniform variable
113  @tparam T - parameter type
114  @param pszName - the name of the uniform variable to be modified
115  @param value - the value of a uniform variable.
116  **/
117  template<class T>
118  void SetUniform(const GLchar* pszName, const T& value) noexcept;
119 
120  /**
121  @brief Get uniform location based on it's name
122  @param pszName - uniform string name
123  @retval - location number
124  **/
125  GLint GetUniformLocation(const GLchar* pszName) const noexcept;
126 
127  /**
128  @brief Add include string
129  @details ARB_shading_language_include is required for this function
130  calling of this function must be before shader's compilation
131  usage example:
132  #version 440 core
133  #extension GL_ARB_shading_language_include : require
134  #include "/header.h"
135  @param pszName - name that you will #include in shader (should be with leading '/')
136  @param nNameLength - name length
137  @param pszText - text that will be placed in shader instead of #include
138  @param nTextLength - text length
139  @retval - true if include extension is supported and successfully added
140  **/
141  static bool AddInclude(const char* pszName, GLint nNameLength, const char* pszText, GLint nTextLength) noexcept;
142 
143  /**
144  @brief Dispatch program compute
145  @param nGroupsX - The number of work groups to be launched in the X dimension
146  @param nGroupsY - The number of work groups to be launched in the Y dimension
147  @param nGroupsZ - The number of work groups to be launched in the Z dimension
148  **/
149  static void DispatchCompute(GLuint nGroupsX, GLuint nGroupsY, GLuint nGroupsZ) noexcept;
150 
151  bool operator==(const base_shader_program& other) const noexcept;
152  base_shader_program& operator=(base_shader_program&& baseShaderProgram) noexcept;
153 
154 private:
155  GLuint m_nProgram = std::numeric_limits<GLuint>::max();
156 };
157 
159 
160 } // namespace qx
161 
162 #include <qx/gl/shader_program.inl>
Shader program class.
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.
OpenGL base shader.
Definition: shaders.h:43