diff options
author | Ilia Mirkin <[email protected]> | 2016-08-27 18:02:48 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-08-28 21:38:55 -0400 |
commit | d49a231c330df1ed596137bdd2a3d69fcc99d48e (patch) | |
tree | 388d1663e1546a111f2f64f7595efaa5a779f140 /src/compiler/glsl/glsl_parser_extras.h | |
parent | 4ec1c2bb7f4ed4238ce80e25f93dd1120201aaec (diff) |
mesa: add EXT_texture_cube_map_array support
This is identical to OES_texture_cube_map_array support. dEQP has tests
which use this extension. Also it is part of AEP.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/compiler/glsl/glsl_parser_extras.h')
-rw-r--r-- | src/compiler/glsl/glsl_parser_extras.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compiler/glsl/glsl_parser_extras.h b/src/compiler/glsl/glsl_parser_extras.h index 63a8a676b7d..6d408efdb28 100644 --- a/src/compiler/glsl/glsl_parser_extras.h +++ b/src/compiler/glsl/glsl_parser_extras.h @@ -320,6 +320,7 @@ struct _mesa_glsl_parse_state { bool has_texture_cube_map_array() const { return ARB_texture_cube_map_array_enable || + EXT_texture_cube_map_array_enable || OES_texture_cube_map_array_enable || is_version(400, 320); } @@ -736,6 +737,8 @@ struct _mesa_glsl_parse_state { bool EXT_texture_array_warn; bool EXT_texture_buffer_enable; bool EXT_texture_buffer_warn; + bool EXT_texture_cube_map_array_enable; + bool EXT_texture_cube_map_array_warn; bool MESA_shader_framebuffer_fetch_enable; bool MESA_shader_framebuffer_fetch_warn; bool MESA_shader_framebuffer_fetch_non_coherent_enable; |