qxLib
rbo.h
Go to the documentation of this file.
1 /**
2 
3  @file rbo.h
4  @author Khrapov
5  @date 20.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/gl/ibuffer.h>
12 #include <qx/typedefs.h>
13 
14 namespace qx
15 {
16 
17 /**
18 
19  @class base_rbo
20  @brief Base RBO class
21  @details ~
22  @author Khrapov
23  @date 10.07.2020
24 
25 **/
27 {
28 public:
29  virtual ~base_rbo();
30 
31  /**
32  @brief Init RBO with width and height
33  @param nWidth - width
34  @param nHeight - height
35  @param eInternalFormat - internal format used for images
36  @param eAttachment - attachment point of the framebuffer
37  @param nMultiSamples - samples number, 0 - disable
38  **/
39  void Init(size_t nWidth, size_t nHeight, GLenum eInternalFormat, GLenum eAttachment, size_t nMultiSamples = 0);
40 
41  QX_DECL_IBUFFER
42 
43  /**
44  @brief Get texture width
45  @retval - texture width
46  **/
47  size_t GetWidth() const;
48 
49  /**
50  @brief Get texture height
51  @retval - texture height
52  **/
53  size_t GetHeight() const;
54 
55  /**
56  @brief Get texture internal format
57  @retval - texture internal format
58  **/
59  GLenum GetInternalFormat() const;
60 
61  /**
62  @brief Get attachment type
63  @retval - attachment type
64  **/
65  GLenum GetAttachmentType() const;
66 
67 private:
68  GLuint m_nBuffer = std::numeric_limits<GLuint>::max();
69  GLenum m_eInternalFormat = 0;
70  GLenum m_eAttachmentType = 0;
71  size_t m_nWidth = 0;
72  size_t m_nHeight = 0;
73 };
74 
75 using rbo = base_rbo;
76 
77 } // namespace qx
78 
79 #include <qx/gl/rbo.inl>
OpenGL buffer interface.
Definition: ibuffer.h:26
Base RBO class.
Definition: rbo.h:27
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