13 inline base_vao::~base_vao()
15 if (m_nVAO != std::numeric_limits<GLuint>::max())
17 glDeleteVertexArrays(1, &m_nVAO);
18 m_nVAO = std::numeric_limits<GLuint>::max();
24 glGenVertexArrays(1, &m_nVAO);
29 glBindVertexArray(m_nVAO);
44 return m_nVAO != std::numeric_limits<GLuint>::max();
49 glEnableVertexAttribArray(
static_cast<GLuint
>(nIndex));
54 glDisableVertexAttribArray(
static_cast<GLuint
>(nIndex));
61 GLboolean bNormalized,
65 glVertexAttribPointer(
66 static_cast<GLuint
>(nIndex),
71 reinterpret_cast<GLvoid*
>(nOffset));
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.
void DisableVertexArrtibArray(size_t nIndex)
Disable a generic vertex attribute array.
void VertexAttribPointer(size_t nIndex, GLint nSize, GLenum eType, GLboolean bNormalized, GLsizei nStride, size_t nOffset)
Define an array of generic vertex attribute data.