mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-27 00:20:30 +01:00
glsl: Add extension enables for ARB_shader_atomic_counters.
Reviewed-by: Paul Berry <stereotype441@gmail.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
1c7dcfed7c
commit
0bed1ab73b
2 changed files with 3 additions and 0 deletions
|
|
@ -533,6 +533,7 @@ static const _mesa_glsl_extension _mesa_glsl_supported_extensions[] = {
|
|||
EXT(AMD_vertex_shader_layer, true, false, AMD_vertex_shader_layer),
|
||||
EXT(EXT_shader_integer_mix, true, true, EXT_shader_integer_mix),
|
||||
EXT(ARB_texture_gather, true, false, ARB_texture_gather),
|
||||
EXT(ARB_shader_atomic_counters, true, false, ARB_shader_atomic_counters),
|
||||
};
|
||||
|
||||
#undef EXT
|
||||
|
|
|
|||
|
|
@ -325,6 +325,8 @@ struct _mesa_glsl_parse_state {
|
|||
bool ARB_shading_language_420pack_warn;
|
||||
bool EXT_shader_integer_mix_enable;
|
||||
bool EXT_shader_integer_mix_warn;
|
||||
bool ARB_shader_atomic_counters_enable;
|
||||
bool ARB_shader_atomic_counters_warn;
|
||||
/*@}*/
|
||||
|
||||
/** Extensions supported by the OpenGL implementation. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue