diff options
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; } |