mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-14 16:40:52 +00:00
fix uniform buffer size check
This commit is contained in:
parent
0fdc2b0e20
commit
292c20842d
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ void gl_LoadExtensions()
|
|||
glGetIntegerv(GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &v);
|
||||
gl.maxuniforms = v;
|
||||
glGetIntegerv(GL_MAX_UNIFORM_BLOCK_SIZE, &v);
|
||||
gl.maxuniformblock = max(65536, v);
|
||||
gl.maxuniformblock = min(65536, v);
|
||||
glGetIntegerv(GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT, &v);
|
||||
gl.uniformblockalignment = v;
|
||||
|
||||
|
|
Loading…
Reference in a new issue