qxLib
ubo.h
Go to the documentation of this file.
1 /**
2 
3  @file ubo.h
4  @author Khrapov
5  @date 9.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
12 
13 namespace qx
14 {
15 
16 /**
17 
18  @class base_ubo
19  @brief Base UBO class
20  @details UBO can be used to share uniforms between different shader programs,
21  as well as quickly change between sets of uniforms for
22  the same program object
23  @author Khrapov
24  @date 10.07.2020
25 
26 **/
28 {
29 public:
30  base_ubo() = default;
31 
32  /**
33  @brief Get max UBO size
34  @retval - max UBO size
35  **/
36  GLint GetMaxSize() const;
37 
38 protected:
39  QX_DECL_BUFFER_BASE
40 
41 private:
42  GLuint m_nBindingPoint = std::numeric_limits<GLuint>::max();
43 };
44 
45 
46 using ubo = base_ubo;
47 
48 } // namespace qx
49 
50 #include <qx/gl/ubo.inl>
Base UBO class.
Definition: ubo.h:28
GLint GetMaxSize() const
Get max UBO size.
Definition: ubo.inl:13
Base class for buffers with binding points.