qxLib
include
qx
gl
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
11
#include <
qx/gl/buffer_binding_point_base.h
>
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
**/
27
class
base_ubo
:
public
buffer_binding_point_base
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
>
buffer_binding_point_base.h
qx::base_ubo
Base UBO class.
Definition:
ubo.h:28
qx::base_ubo::GetMaxSize
GLint GetMaxSize() const
Get max UBO size.
Definition:
ubo.inl:13
qx::buffer_binding_point_base
Base class for buffers with binding points.
Definition:
buffer_binding_point_base.h:26
ubo.inl
Generated by
1.9.1