qxLib
rbo.inl
Go to the documentation of this file.
1 /**
2 
3  @file rbo.inl
4  @author Khrapov
5  @date 20.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 inline base_rbo::~base_rbo()
14 {
15  if (m_nBuffer != std::numeric_limits<GLuint>::max())
16  {
17  glDeleteRenderbuffers(1, &m_nBuffer);
18  m_nBuffer = std::numeric_limits<GLuint>::max();
19  }
20 }
21 
22 inline void base_rbo::Init(
23  size_t nWidth,
24  size_t nHeight,
25  GLenum eInternalFormat,
26  GLenum eAttachment,
27  size_t nMultiSamples)
28 {
29  m_nWidth = nWidth;
30  m_nHeight = nHeight;
31  m_eInternalFormat = eInternalFormat;
32  m_eAttachmentType = eAttachment;
33 
34  // use a single renderbuffer object for both a depth and stencil buffer.
35  if (nMultiSamples > 0)
36  {
37  glRenderbufferStorageMultisample(
38  GL_RENDERBUFFER,
39  static_cast<GLsizei>(nMultiSamples),
40  eInternalFormat,
41  static_cast<GLsizei>(nWidth),
42  static_cast<GLsizei>(nHeight));
43  }
44  else
45  {
46  glRenderbufferStorage(
47  GL_RENDERBUFFER,
48  eInternalFormat,
49  static_cast<GLsizei>(nWidth),
50  static_cast<GLsizei>(nHeight));
51  }
52 }
53 
54 inline void base_rbo::Generate()
55 {
56  glGenRenderbuffers(1, &m_nBuffer);
57 }
58 
59 inline void base_rbo::Bind() const
60 {
61  glBindRenderbuffer(GL_RENDERBUFFER, m_nBuffer);
62 }
63 
64 inline void base_rbo::Unbind() const
65 {
66  glBindRenderbuffer(GL_RENDERBUFFER, 0);
67 }
68 
69 inline GLuint base_rbo::GetBufferName() const
70 {
71  return m_nBuffer;
72 }
73 
74 inline bool base_rbo::IsGenerated() const
75 {
76  return m_nBuffer != std::numeric_limits<GLuint>::max();
77 }
78 
79 inline size_t base_rbo::GetWidth() const
80 {
81  return m_nWidth;
82 }
83 
84 inline size_t base_rbo::GetHeight() const
85 {
86  return m_nHeight;
87 }
88 
89 inline GLenum base_rbo::GetInternalFormat() const
90 {
91  return m_eInternalFormat;
92 }
93 
94 inline GLenum base_rbo::GetAttachmentType() const
95 {
96  return m_eAttachmentType;
97 }
98 
99 
100 } // 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.
void Init(size_t nWidth, size_t nHeight, GLenum eInternalFormat, GLenum eAttachment, size_t nMultiSamples=0)
Init RBO with width and height.
Definition: rbo.inl:22
size_t GetHeight() const
Get texture height.
Definition: rbo.inl:84
QX_DECL_IBUFFER size_t GetWidth() const
Get texture width.
Definition: rbo.inl:79
GLenum GetAttachmentType() const
Get attachment type.
Definition: rbo.inl:94
GLenum GetInternalFormat() const
Get texture internal format.
Definition: rbo.inl:89