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/builtin_functions.cpp | |
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/builtin_functions.cpp')
-rw-r--r-- | src/compiler/glsl/builtin_functions.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/glsl/builtin_functions.cpp b/src/compiler/glsl/builtin_functions.cpp index 64bf8d8a48a..19ef99edcf0 100644 --- a/src/compiler/glsl/builtin_functions.cpp +++ b/src/compiler/glsl/builtin_functions.cpp @@ -249,6 +249,7 @@ gpu_shader5_or_OES_texture_cube_map_array(const _mesa_glsl_parse_state *state) { return state->is_version(400, 320) || state->ARB_gpu_shader5_enable || + state->EXT_texture_cube_map_array_enable || state->OES_texture_cube_map_array_enable; } @@ -371,6 +372,7 @@ texture_gather_cube_map_array(const _mesa_glsl_parse_state *state) return state->is_version(400, 320) || state->ARB_texture_gather_enable || state->ARB_gpu_shader5_enable || + state->EXT_texture_cube_map_array_enable || state->OES_texture_cube_map_array_enable; } |