13 inline base_rbo::~base_rbo()
15 if (m_nBuffer != std::numeric_limits<GLuint>::max())
17 glDeleteRenderbuffers(1, &m_nBuffer);
18 m_nBuffer = std::numeric_limits<GLuint>::max();
25 GLenum eInternalFormat,
31 m_eInternalFormat = eInternalFormat;
32 m_eAttachmentType = eAttachment;
35 if (nMultiSamples > 0)
37 glRenderbufferStorageMultisample(
39 static_cast<GLsizei
>(nMultiSamples),
41 static_cast<GLsizei
>(nWidth),
42 static_cast<GLsizei
>(nHeight));
46 glRenderbufferStorage(
49 static_cast<GLsizei
>(nWidth),
50 static_cast<GLsizei
>(nHeight));
56 glGenRenderbuffers(1, &m_nBuffer);
61 glBindRenderbuffer(GL_RENDERBUFFER, m_nBuffer);
66 glBindRenderbuffer(GL_RENDERBUFFER, 0);
76 return m_nBuffer != std::numeric_limits<GLuint>::max();
91 return m_eInternalFormat;
96 return m_eAttachmentType;
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.
size_t GetHeight() const
Get texture height.
QX_DECL_IBUFFER size_t GetWidth() const
Get texture width.
GLenum GetAttachmentType() const
Get attachment type.
GLenum GetInternalFormat() const
Get texture internal format.