diff options
author | Ian Romanick <[email protected]> | 2015-04-28 12:50:51 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2015-05-04 13:49:58 -0700 |
commit | ad14f44b3e89cf4d05d29f2aaf9f64fe0e42af3b (patch) | |
tree | dc7cf71bd1608bbdbb3f18a6d7e0a882be6afbe2 /src/glsl/glsl_parser_extras.h | |
parent | dd61475d56f3b94c3586889333931ebe50a32c3e (diff) |
glsl/es3.1: Allow interger mix built-ins in GLSL ES 3.10
v2: Add missing lexer support. Noticed by Tapani.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Tapani Pälli <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]> [v1]
Diffstat (limited to 'src/glsl/glsl_parser_extras.h')
-rw-r--r-- | src/glsl/glsl_parser_extras.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/glsl/glsl_parser_extras.h b/src/glsl/glsl_parser_extras.h index 00fcc75ca06..4612071426b 100644 --- a/src/glsl/glsl_parser_extras.h +++ b/src/glsl/glsl_parser_extras.h @@ -192,7 +192,7 @@ struct _mesa_glsl_parse_state { bool has_atomic_counters() const { - return ARB_shader_atomic_counters_enable || is_version(420, 0); + return ARB_shader_atomic_counters_enable || is_version(420, 310); } bool has_explicit_attrib_stream() const @@ -353,6 +353,16 @@ struct _mesa_glsl_parse_state { unsigned MaxCombinedAtomicCounters; unsigned MaxAtomicBufferBindings; + /* These are also atomic counter related, but they weren't added to + * until atomic counters were added to core in GLSL 4.20 and GLSL ES + * 3.10. + */ + unsigned MaxVertexAtomicCounterBuffers; + unsigned MaxGeometryAtomicCounterBuffers; + unsigned MaxFragmentAtomicCounterBuffers; + unsigned MaxCombinedAtomicCounterBuffers; + unsigned MaxAtomicCounterBufferSize; + /* ARB_compute_shader */ unsigned MaxComputeWorkGroupCount[3]; unsigned MaxComputeWorkGroupSize[3]; |