13 inline base_fbo::~base_fbo()
15 if (m_nBuffer != std::numeric_limits<GLuint>::max())
17 glDeleteFramebuffers(1, &m_nBuffer);
18 m_nBuffer = std::numeric_limits<GLuint>::max();
24 glGenFramebuffers(1, &m_nBuffer);
29 glBindFramebuffer(m_nTarget, m_nBuffer);
34 glBindFramebuffer(m_nTarget, 0);
44 return m_nBuffer != std::numeric_limits<GLuint>::max();
69 qx::string_view svErrorMsg;
70 if (
const auto eStatus = glCheckFramebufferStatus(GL_FRAMEBUFFER); eStatus != GL_FRAMEBUFFER_COMPLETE)
74 case GL_FRAMEBUFFER_UNDEFINED:
76 "The specified framebuffer is the default read or draw"
77 "framebuffer, but the default framebuffer does not exist.");
80 case GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT:
82 "Any of the framebuffer attachment points "
83 "are framebuffer incomplete.");
86 case GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT:
88 "The framebuffer does not have at least one "
89 "image attached to it.");
92 case GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER:
94 "The value of GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE is GL_NONE "
95 "for any color attachment point(s) named by GL_DRAW_BUFFERi.");
98 case GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER:
100 "GL_READ_BUFFER is not GL_NONE and the value of "
101 "GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE is GL_NONE "
102 "for the color attachment point named by GL_READ_BUFFER.");
105 case GL_FRAMEBUFFER_UNSUPPORTED:
106 svErrorMsg = QX_TEXT(
107 "The combination of internal formats of the attached "
108 "images violates an implementation - dependent set of "
112 case GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE:
113 svErrorMsg = QX_TEXT(
114 "The value of GL_RENDERBUFFER_SAMPLES is not the "
115 "same for all attached renderbuffers; if the value of "
116 "GL_TEXTURE_SAMPLES is the not same for all attached textures; "
117 "or , if the attached images are a mix of renderbuffersand "
119 "the value of GL_RENDERBUFFER_SAMPLES does not match the value "
120 "of GL_TEXTURE_SAMPLES. Also returned if the value "
121 "of GL_TEXTURE_FIXED_SAMPLE_LOCATIONS is not the same for all "
122 "attached textures; or , if the attached images are a mix "
123 "of renderbuffersand textures, the value of "
124 "GL_TEXTURE_FIXED_SAMPLE_LOCATIONS is not GL_TRUE for all "
125 "attached textures.");
128 case GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS:
129 svErrorMsg = QX_TEXT(
130 "Any framebuffer attachment is layered, and any "
131 "populated attachment is not layered, or if all populated "
132 "color attachments are not from textures of the same target.");
136 svErrorMsg = QX_TEXT(
"Unknown error");
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 AttachRBO(const base_rbo &rbo)
Attach RBO th FRO.
QX_DECL_IBUFFER void SetTarget(GLenum target)
Set target type.
qx::string_view CheckStatus() const
Check framebuffer status.
void AttachTexture2D(GLenum attachment, const base_texture &texture, GLint nMipmapLevel=0)
Attache a single face of a specific MIP level to FBO.
void AttachTexture(GLenum attachment, const base_texture &texture, GLint nMipmapLevel=0)
Attache all cube map faces of a specific MIP level as an array of images (layered framebuffer)
GLenum GetAttachmentType() const
Get attachment type.
QX_DECL_IBUFFER GLenum GetTarget() const
Get texture target.