mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 04:10:09 +01:00
mesa: Add ARB_shader_image_load_store to the extension table.
Reviewed-by: Chris Forbes <chrisf@ijw.co.nz> Reviewed-by: Paul Berry <stereotype441@gmail.com>
This commit is contained in:
parent
a167e354e7
commit
eb0de7c432
2 changed files with 2 additions and 0 deletions
|
|
@ -126,6 +126,7 @@ static const struct extension extension_table[] = {
|
|||
{ "GL_ARB_seamless_cube_map", o(ARB_seamless_cube_map), GL, 2009 },
|
||||
{ "GL_ARB_shader_atomic_counters", o(ARB_shader_atomic_counters), GL, 2011 },
|
||||
{ "GL_ARB_shader_bit_encoding", o(ARB_shader_bit_encoding), GL, 2010 },
|
||||
{ "GL_ARB_shader_image_load_store", o(ARB_shader_image_load_store), GL, 2011 },
|
||||
{ "GL_ARB_shader_objects", o(dummy_true), GL, 2002 },
|
||||
{ "GL_ARB_shader_stencil_export", o(ARB_shader_stencil_export), GL, 2009 },
|
||||
{ "GL_ARB_shader_texture_lod", o(ARB_shader_texture_lod), GL, 2009 },
|
||||
|
|
|
|||
|
|
@ -3398,6 +3398,7 @@ struct gl_extensions
|
|||
GLboolean ARB_seamless_cube_map;
|
||||
GLboolean ARB_shader_atomic_counters;
|
||||
GLboolean ARB_shader_bit_encoding;
|
||||
GLboolean ARB_shader_image_load_store;
|
||||
GLboolean ARB_shader_stencil_export;
|
||||
GLboolean ARB_shader_texture_lod;
|
||||
GLboolean ARB_shading_language_packing;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue