qxLib
buffer_base.inl
Go to the documentation of this file.
1 /**
2 
3  @file buffer_base.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 buffer_base::~buffer_base()
14 {
15  if (m_nBuffer != std::numeric_limits<GLuint>::max())
16  {
17  glDeleteBuffers(1, &m_nBuffer);
18  m_nBuffer = std::numeric_limits<GLuint>::max();
19  }
20 }
21 
22 inline void buffer_base::Generate()
23 {
24  glGenBuffers(1, &m_nBuffer);
25 }
26 
27 inline void buffer_base::Bind() const
28 {
29  glBindBuffer(GetBufferType(), m_nBuffer);
30 }
31 
32 inline void buffer_base::Unbind() const
33 {
34  glBindBuffer(GetBufferType(), 0);
35 }
36 
37 inline GLuint buffer_base::GetBufferName() const
38 {
39  return m_nBuffer;
40 }
41 
42 inline bool buffer_base::IsGenerated() const
43 {
44  return m_nBuffer != std::numeric_limits<GLuint>::max();
45 }
46 
48 {
49  glMemoryBarrier(GetBarrierBit());
50 }
51 
52 inline void buffer_base::Allocate(GLsizeiptr nSize, const void* pData, GLenum eUsage)
53 {
54  glBufferData(GetBufferType(), nSize, pData, eUsage);
55 }
56 
57 inline void buffer_base::Update(const void* pData, GLsizeiptr nSize, GLintptr nOffset)
58 {
59  glBufferSubData(GetBufferType(), nOffset, nSize, pData);
60 }
61 
62 } // 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.
virtual GLenum GetBufferType() const =0
Get buffer type.
virtual GLbitfield GetBarrierBit() const =0
Get buffer type barrier bit.
virtual void Allocate(GLsizeiptr nSize, const void *pData=nullptr, GLenum eUsage=GL_DYNAMIC_DRAW)
Allocate memory for the buffer.
Definition: buffer_base.inl:52
virtual QX_DECL_IBUFFER void MemBarrier()
Defines a barrier ordering memory transactions.
Definition: buffer_base.inl:47
virtual void Update(const void *pData, GLsizeiptr nSize, GLintptr nOffset=0)
Update buffer.
Definition: buffer_base.inl:57