qxLib
shaders.inl
Go to the documentation of this file.
1 /**
2 
3  @file shaders.inl
4  @author Khrapov
5  @date 17.06.2019
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 template<GLenum ShaderType>
14 inline shader_base<ShaderType>::~shader_base()
15 {
16  glDeleteShader(m_nShader);
17 }
18 
19 template<GLenum ShaderType>
20 inline string shader_base<ShaderType>::Init(const GLchar* pszShaderCode)
21 {
22  cstring sError;
23 
24  if (pszShaderCode)
25  {
26  // Compile
27  m_nShader = glCreateShader(ShaderType);
28  glShaderSource(m_nShader, 1, &pszShaderCode, nullptr);
29  glCompileShader(m_nShader);
30 
31  // Print compile errors if any
32  if (const GLint bSuccess = GetParameter(GL_COMPILE_STATUS); !bSuccess)
33  {
34  GLsizei nErrorStringLength = 0;
35  glGetShaderiv(m_nShader, GL_INFO_LOG_LENGTH, &nErrorStringLength);
36 
37  if (nErrorStringLength > 0)
38  {
39  sError.assign(nErrorStringLength, '\0');
40  glGetShaderInfoLog(m_nShader, nErrorStringLength, nullptr, sError.data());
41  }
42  }
43  }
44  else
45  {
46  sError = "Nullptr passed as shader text pointer";
47  }
48 
49  return qx::to_string(sError);
50 }
51 
52 
53 template<GLenum ShaderType>
54 inline GLuint shader_base<ShaderType>::GetID() const
55 {
56  return m_nShader;
57 }
58 
59 template<GLenum ShaderType>
60 inline GLint shader_base<ShaderType>::GetParameter(GLenum eParameter) const
61 {
62  GLint nRet = -1;
63  glGetShaderiv(m_nShader, eParameter, &nRet);
64  return nRet;
65 }
66 
67 } // namespace qx
String class.
Definition: string.h:64
void assign(size_type nSymbols, value_type chSymbol) noexcept
Assign by filling.
Definition: string.inl:64
GLuint GetID() const
Get shader name.
Definition: shaders.inl:54
GLint GetParameter(GLenum eParameter) const
Get shader parameter.
Definition: shaders.inl:60
string Init(const GLchar *pszShaderCode)
Init (compile) shader.
Definition: shaders.inl:20
string to_string(cstring_view stringView, const std::locale &locale=std::locale())
Convert a char string to common string type.