13 inline base_shader_program::base_shader_program(base_shader_program&& baseShaderProgram) noexcept
15 std::swap(m_nProgram, baseShaderProgram.m_nProgram);
18 inline base_shader_program::~base_shader_program() noexcept
20 if (m_nProgram != std::numeric_limits<GLuint>::max())
21 glDeleteProgram(m_nProgram);
26 m_nProgram = glCreateProgram();
29 template<GLenum ShaderType>
32 glAttachShader(m_nProgram, pShader->GetID());
39 glLinkProgram(m_nProgram);
42 if (bSuccess != GL_TRUE)
44 const GLsizei nLogLength =
GetParameter(GL_INFO_LOG_LENGTH);
45 sError =
cstring(nLogLength,
'\0');
46 glGetProgramInfoLog(m_nProgram, nLogLength,
nullptr, sError.data());
54 glUseProgram(m_nProgram);
65 glGetProgramiv(m_nProgram, eParameter, &nRet);
77 if constexpr (std::is_same_v<T, GLfloat>)
79 glUniform1fv(nUniformLocation, nCount, pValue);
81 else if constexpr (std::is_same_v<T, glm::vec2>)
83 glUniform2fv(nUniformLocation, nCount, glm::value_ptr(*pValue));
85 else if constexpr (std::is_same_v<T, glm::vec3>)
87 glUniform3fv(nUniformLocation, nCount, glm::value_ptr(*pValue));
89 else if constexpr (std::is_same_v<T, glm::vec4>)
91 glUniform4fv(nUniformLocation, nCount, glm::value_ptr(*pValue));
93 else if constexpr (std::is_same_v<T, GLint>)
95 glUniform1iv(nUniformLocation, nCount, pValue);
97 else if constexpr (std::is_same_v<T, glm::ivec2>)
99 glUniform2iv(nUniformLocation, nCount, glm::value_ptr(*pValue));
101 else if constexpr (std::is_same_v<T, glm::ivec3>)
103 glUniform3iv(nUniformLocation, nCount, glm::value_ptr(*pValue));
105 else if constexpr (std::is_same_v<T, glm::ivec4>)
107 glUniform4iv(nUniformLocation, nCount, glm::value_ptr(*pValue));
109 else if constexpr (std::is_same_v<T, GLuint>)
111 glUniform1uiv(nUniformLocation, nCount, pValue);
113 else if constexpr (std::is_same_v<T, glm::uvec2>)
115 glUniform2uiv(nUniformLocation, nCount, glm::value_ptr(*pValue));
117 else if constexpr (std::is_same_v<T, glm::uvec3>)
119 glUniform3uiv(nUniformLocation, nCount, glm::value_ptr(*pValue));
121 else if constexpr (std::is_same_v<T, glm::uvec4>)
123 glUniform4uiv(nUniformLocation, nCount, glm::value_ptr(*pValue));
125 else if constexpr (std::is_same_v<T, glm::mat2>)
127 glUniformMatrix2fv(nUniformLocation, nCount, GL_FALSE, glm::value_ptr(*pValue));
129 else if constexpr (std::is_same_v<T, glm::mat3>)
131 glUniformMatrix3fv(nUniformLocation, nCount, GL_FALSE, glm::value_ptr(*pValue));
133 else if constexpr (std::is_same_v<T, glm::mat4>)
135 glUniformMatrix4fv(nUniformLocation, nCount, GL_FALSE, glm::value_ptr(*pValue));
137 else if constexpr (std::is_same_v<T, glm::mat2x3>)
139 glUniformMatrix2x3fv(nUniformLocation, nCount, GL_FALSE, glm::value_ptr(*pValue));
141 else if constexpr (std::is_same_v<T, glm::mat3x2>)
143 glUniformMatrix3x2fv(nUniformLocation, nCount, GL_FALSE, glm::value_ptr(*pValue));
145 else if constexpr (std::is_same_v<T, glm::mat2x4>)
147 glUniformMatrix2x4fv(nUniformLocation, nCount, GL_FALSE, glm::value_ptr(*pValue));
149 else if constexpr (std::is_same_v<T, glm::mat4x2>)
151 glUniformMatrix4x2fv(nUniformLocation, nCount, GL_FALSE, glm::value_ptr(*pValue));
153 else if constexpr (std::is_same_v<T, glm::mat3x4>)
155 glUniformMatrix3x4fv(nUniformLocation, nCount, GL_FALSE, glm::value_ptr(*pValue));
157 else if constexpr (std::is_same_v<T, glm::mat4x3>)
159 glUniformMatrix4x3fv(nUniformLocation, nCount, GL_FALSE, glm::value_ptr(*pValue));
163 []<
bool flag =
false>()
165 static_assert(flag,
"Uniform type is not supported");
174 SetUniform(GetUniformLocation(pszName), pValue, nCount);
180 using type = std::remove_cvref_t<T>;
181 if constexpr (std::is_same_v<T, GLfloat>)
182 glUniform1f(nUniformLocation, value);
183 else if constexpr (std::is_same_v<T, glm::vec2>)
184 glUniform2f(nUniformLocation, value.x, value.y);
185 else if constexpr (std::is_same_v<T, glm::vec3>)
186 glUniform3f(nUniformLocation, value.x, value.y, value.z);
187 else if constexpr (std::is_same_v<T, glm::vec4>)
188 glUniform4f(nUniformLocation, value.x, value.y, value.z, value.w);
189 else if constexpr (std::is_same_v<T, GLint>)
190 glUniform1i(nUniformLocation, value);
191 else if constexpr (std::is_same_v<T, glm::ivec2>)
192 glUniform2i(nUniformLocation, value.x, value.y);
193 else if constexpr (std::is_same_v<T, glm::ivec3>)
194 glUniform3i(nUniformLocation, value.x, value.y, value.z);
195 else if constexpr (std::is_same_v<T, glm::ivec4>)
196 glUniform4i(nUniformLocation, value.x, value.y, value.z, value.w);
197 else if constexpr (std::is_same_v<T, bool>)
198 glUniform1i(nUniformLocation, value ? GL_TRUE : GL_FALSE);
200 SetUniform(nUniformLocation, &value, 1);
206 SetUniform(GetUniformLocation(pszName), value);
211 return glGetUniformLocation(m_nProgram, pszName);
218 GLint nTextLength) noexcept
220 const bool bGlslIncludeSupported = GLEW_ARB_shading_language_include != 0;
221 if (bGlslIncludeSupported)
223 glNamedStringARB(GL_SHADER_INCLUDE_ARB, nNameLength, pszName, nTextLength, pszText);
226 return bGlslIncludeSupported;
231 glDispatchCompute(nGroupsX, nGroupsY, nGroupsZ);
234 inline bool base_shader_program::operator==(
const base_shader_program& other)
const noexcept
236 return m_nProgram == other.m_nProgram;
239 inline base_shader_program& base_shader_program::operator=(base_shader_program&& baseShaderProgram) noexcept
241 std::swap(m_nProgram, baseShaderProgram.m_nProgram);
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.
string to_string(cstring_view stringView, const std::locale &locale=std::locale())
Convert a char string to common string type.