mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
glcpp: Add built-in #define for GL_ARB_uniform_buffer_object.
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
7fabb2b593
commit
532e99cbf2
1 changed files with 3 additions and 0 deletions
|
|
@ -1186,6 +1186,9 @@ glcpp_parser_create (const struct gl_extensions *extensions, int api)
|
|||
|
||||
if (extensions->ARB_shader_bit_encoding)
|
||||
add_builtin_define(parser, "GL_ARB_shader_bit_encoding", 1);
|
||||
|
||||
if (extensions->ARB_uniform_buffer_object)
|
||||
add_builtin_define(parser, "GL_ARB_uniform_buffer_object", 1);
|
||||
}
|
||||
|
||||
language_version = 110;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue