qxLib
fbo.h
Go to the documentation of this file.
1 /**
2 
3  @file fbo.h
4  @author Khrapov
5  @date 20.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
12 #include <qx/gl/rbo.h>
13 #include <qx/gl/texture.h>
14 
15 namespace qx
16 {
17 
18 /**
19 
20  @class base_fbo
21  @brief Base FBO class
22  @details ~
23  @author Khrapov
24  @date 10.07.2020
25 
26 **/
27 class base_fbo : public IBuffer
28 {
29 public:
30  virtual ~base_fbo();
31 
32  QX_DECL_IBUFFER
33 
34  /**
35  @brief Set target type
36  @param target - GL_FRAMEBUFFER, GL_DRAW_FRAMEBUFFER or GL_READ_FRAMEBUFFER
37  **/
38  void SetTarget(GLenum target);
39 
40  /**
41  @brief Attach RBO th FRO
42  @param rbo - render buffer object
43  **/
44  void AttachRBO(const base_rbo& rbo);
45 
46  /**
47  @brief Attache a single face of a specific MIP level to FBO
48  @param attachment - attachment point of the framebuffer
49  @param texture - fbo texture
50  @param nMipmapLevel - mipmap level of texture
51  **/
52  void AttachTexture2D(GLenum attachment, const base_texture& texture, GLint nMipmapLevel = 0);
53 
54  /**
55  @brief Attache all cube map faces of a specific MIP level
56  as an array of images (layered framebuffer)
57  @param attachment - attachment point of the framebuffer
58  @param texture - fbo texture
59  @param nMipmapLevel - mipmap level of texture
60  **/
61  void AttachTexture(GLenum attachment, const base_texture& texture, GLint nMipmapLevel = 0);
62 
63  /**
64  @brief Check framebuffer status
65  @retval - framebuffer error or empty if success
66  **/
67  qx::string_view CheckStatus() const;
68 
69 private:
70  GLuint m_nBuffer = std::numeric_limits<GLuint>::max();
71  GLenum m_nTarget = GL_FRAMEBUFFER;
72 };
73 
74 using fbo = base_fbo;
75 
76 } // namespace qx
77 
78 #include <qx/gl/fbo.inl>
OpenGL buffer interface.
Definition: ibuffer.h:26
Base FBO class.
Definition: fbo.h:28
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
Base texture class.
Definition: texture.h:28