mesa: Add the GL_ARB_texture_compression_bptc extension
This adds a boolean in the gl_extensions struct for GL_ARB_texture_compression_bptc as well as an entry in extension_table. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
@@ -157,6 +157,7 @@ static const struct extension extension_table[] = {
|
||||
{ "GL_ARB_texture_buffer_object_rgb32", o(ARB_texture_buffer_object_rgb32), GLC, 2009 },
|
||||
{ "GL_ARB_texture_buffer_range", o(ARB_texture_buffer_range), GLC, 2012 },
|
||||
{ "GL_ARB_texture_compression", o(dummy_true), GLL, 2000 },
|
||||
{ "GL_ARB_texture_compression_bptc", o(ARB_texture_compression_bptc), GL, 2010 },
|
||||
{ "GL_ARB_texture_compression_rgtc", o(ARB_texture_compression_rgtc), GL, 2004 },
|
||||
{ "GL_ARB_texture_cube_map", o(ARB_texture_cube_map), GLL, 1999 },
|
||||
{ "GL_ARB_texture_cube_map_array", o(ARB_texture_cube_map_array), GL, 2009 },
|
||||
|
||||
@@ -3595,6 +3595,7 @@ struct gl_extensions
|
||||
GLboolean ARB_texture_buffer_object;
|
||||
GLboolean ARB_texture_buffer_object_rgb32;
|
||||
GLboolean ARB_texture_buffer_range;
|
||||
GLboolean ARB_texture_compression_bptc;
|
||||
GLboolean ARB_texture_compression_rgtc;
|
||||
GLboolean ARB_texture_cube_map;
|
||||
GLboolean ARB_texture_cube_map_array;
|
||||
|
||||
Reference in New Issue
Block a user