glcpp: Add GL_ARB_conservative_depth #define.
Forgotten in the patch that enabled the extension. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
@@ -1132,8 +1132,10 @@ glcpp_parser_create (const struct gl_extensions *extensions, int api)
|
||||
if (extensions->ARB_shader_texture_lod)
|
||||
add_builtin_define(parser, "GL_ARB_shader_texture_lod", 1);
|
||||
|
||||
if (extensions->AMD_conservative_depth)
|
||||
if (extensions->AMD_conservative_depth) {
|
||||
add_builtin_define(parser, "GL_AMD_conservative_depth", 1);
|
||||
add_builtin_define(parser, "GL_ARB_conservative_depth", 1);
|
||||
}
|
||||
}
|
||||
|
||||
language_version = 110;
|
||||
|
||||
Reference in New Issue
Block a user