qxLib
ssbo.inl
Go to the documentation of this file.
1 /**
2 
3  @file ssbo.inl
4  @author Khrapov
5  @date 18.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 inline GLint base_ssbo::GetMaxSize() const
14 {
15  GLint ret;
16  glGetIntegerv(GL_MAX_SHADER_STORAGE_BLOCK_SIZE, &ret);
17  return ret;
18 }
19 
20 inline GLenum base_ssbo::GetBufferType() const
21 {
22  return GL_SHADER_STORAGE_BUFFER;
23 }
24 inline GLbitfield base_ssbo::GetBarrierBit() const
25 {
26  return GL_SHADER_STORAGE_BARRIER_BIT;
27 }
28 
29 } // namespace qx
GLint GetMaxSize() const
Get max SSBO size.
Definition: ssbo.inl:13
virtual GLenum GetBufferType() const =0
Get buffer type.
virtual GLbitfield GetBarrierBit() const =0
Get buffer type barrier bit.