qxLib
fbo.inl
Go to the documentation of this file.
1 /**
2 
3  @file fbo.inl
4  @author Khrapov
5  @date 19.08.2021
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 inline base_fbo::~base_fbo()
14 {
15  if (m_nBuffer != std::numeric_limits<GLuint>::max())
16  {
17  glDeleteFramebuffers(1, &m_nBuffer);
18  m_nBuffer = std::numeric_limits<GLuint>::max();
19  }
20 }
21 
22 inline void base_fbo::Generate()
23 {
24  glGenFramebuffers(1, &m_nBuffer);
25 }
26 
27 inline void base_fbo::Bind() const
28 {
29  glBindFramebuffer(m_nTarget, m_nBuffer);
30 }
31 
32 inline void base_fbo::Unbind() const
33 {
34  glBindFramebuffer(m_nTarget, 0);
35 }
36 
37 inline GLuint base_fbo::GetBufferName() const
38 {
39  return m_nBuffer;
40 }
41 
42 inline bool base_fbo::IsGenerated() const
43 {
44  return m_nBuffer != std::numeric_limits<GLuint>::max();
45 }
46 
47 inline void base_fbo::SetTarget(GLenum target)
48 {
49  m_nTarget = target;
50 }
51 
52 inline void base_fbo::AttachRBO(const base_rbo& rbo)
53 {
54  glFramebufferRenderbuffer(m_nTarget, rbo.GetAttachmentType(), GL_RENDERBUFFER, rbo.GetBufferName());
55 }
56 
57 inline void base_fbo::AttachTexture2D(GLenum attachment, const base_texture& texture, GLint nMipmapLevel)
58 {
59  glFramebufferTexture2D(m_nTarget, attachment, texture.GetTarget(), texture.GetBufferName(), nMipmapLevel);
60 }
61 
62 inline void base_fbo::AttachTexture(GLenum attachment, const base_texture& texture, GLint nMipmapLevel)
63 {
64  glFramebufferTexture(m_nTarget, attachment, texture.GetBufferName(), nMipmapLevel);
65 }
66 
67 inline qx::string_view base_fbo::CheckStatus() const
68 {
69  qx::string_view svErrorMsg;
70  if (const auto eStatus = glCheckFramebufferStatus(GL_FRAMEBUFFER); eStatus != GL_FRAMEBUFFER_COMPLETE)
71  {
72  switch (eStatus)
73  {
74  case GL_FRAMEBUFFER_UNDEFINED:
75  svErrorMsg = QX_TEXT(
76  "The specified framebuffer is the default read or draw"
77  "framebuffer, but the default framebuffer does not exist.");
78  break;
79 
80  case GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT:
81  svErrorMsg = QX_TEXT(
82  "Any of the framebuffer attachment points "
83  "are framebuffer incomplete.");
84  break;
85 
86  case GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT:
87  svErrorMsg = QX_TEXT(
88  "The framebuffer does not have at least one "
89  "image attached to it.");
90  break;
91 
92  case GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER:
93  svErrorMsg = QX_TEXT(
94  "The value of GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE is GL_NONE "
95  "for any color attachment point(s) named by GL_DRAW_BUFFERi.");
96  break;
97 
98  case GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER:
99  svErrorMsg = QX_TEXT(
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.");
103  break;
104 
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 "
109  "restrictions.");
110  break;
111 
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 "
118  "textures, "
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.");
126  break;
127 
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.");
133  break;
134 
135  default:
136  svErrorMsg = QX_TEXT("Unknown error");
137  break;
138  }
139  }
140 
141  return svErrorMsg;
142 }
143 
144 } // 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 AttachRBO(const base_rbo &rbo)
Attach RBO th FRO.
Definition: fbo.inl:52
QX_DECL_IBUFFER void SetTarget(GLenum target)
Set target type.
Definition: fbo.inl:47
qx::string_view CheckStatus() const
Check framebuffer status.
Definition: fbo.inl:67
void AttachTexture2D(GLenum attachment, const base_texture &texture, GLint nMipmapLevel=0)
Attache a single face of a specific MIP level to FBO.
Definition: fbo.inl:57
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)
Definition: fbo.inl:62
Base RBO class.
Definition: rbo.h:27
GLenum GetAttachmentType() const
Get attachment type.
Definition: rbo.inl:94
Base texture class.
Definition: texture.h:28
QX_DECL_IBUFFER GLenum GetTarget() const
Get texture target.
Definition: texture.inl:48