qxLib
vao.inl
Go to the documentation of this file.
1 /**
2 
3  @file vao.inl
4  @author Khrapov
5  @date 19.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 inline base_vao::~base_vao()
14 {
15  if (m_nVAO != std::numeric_limits<GLuint>::max())
16  {
17  glDeleteVertexArrays(1, &m_nVAO);
18  m_nVAO = std::numeric_limits<GLuint>::max();
19  }
20 }
21 
22 inline void base_vao::Generate()
23 {
24  glGenVertexArrays(1, &m_nVAO);
25 }
26 
27 inline void base_vao::Bind() const
28 {
29  glBindVertexArray(m_nVAO);
30 }
31 
32 inline void base_vao::Unbind() const
33 {
34  glBindVertexArray(0);
35 }
36 
37 inline GLuint base_vao::GetBufferName() const
38 {
39  return m_nVAO;
40 }
41 
42 inline bool base_vao::IsGenerated() const
43 {
44  return m_nVAO != std::numeric_limits<GLuint>::max();
45 };
46 
47 inline void base_vao::EnableVertexArrtibArray(size_t nIndex)
48 {
49  glEnableVertexAttribArray(static_cast<GLuint>(nIndex));
50 }
51 
52 inline void base_vao::DisableVertexArrtibArray(size_t nIndex)
53 {
54  glDisableVertexAttribArray(static_cast<GLuint>(nIndex));
55 }
56 
58  size_t nIndex,
59  GLint nSize,
60  GLenum eType,
61  GLboolean bNormalized,
62  GLsizei nStride,
63  size_t nOffset)
64 {
65  glVertexAttribPointer(
66  static_cast<GLuint>(nIndex),
67  nSize,
68  eType,
69  bNormalized,
70  nStride,
71  reinterpret_cast<GLvoid*>(nOffset));
72 }
73 
74 } // namespace qx
virtual void Bind() const =0
Bind a named buffer object.
virtual void Generate()=0
Generate buffer object.
virtual bool IsGenerated() const =0
Is this buffer generated.
virtual GLuint GetBufferName() const =0
Get the object's name - the reference to the object.
virtual void Unbind() const =0
Unbind a named buffer object.
QX_DECL_IBUFFER void EnableVertexArrtibArray(size_t nIndex)
Enable a generic vertex attribute array.
Definition: vao.inl:47
void DisableVertexArrtibArray(size_t nIndex)
Disable a generic vertex attribute array.
Definition: vao.inl:52
void VertexAttribPointer(size_t nIndex, GLint nSize, GLenum eType, GLboolean bNormalized, GLsizei nStride, size_t nOffset)
Define an array of generic vertex attribute data.
Definition: vao.inl:57