diff options
author | Ian Romanick <[email protected]> | 2016-08-17 10:20:34 +0100 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2016-08-26 15:03:15 -0700 |
commit | dc4f53b68308bbd79932470cf4613037f7e95fb7 (patch) | |
tree | ab86f908b5d9e32cd416c951a35a3d0ea811b984 /src/mesa/main/context.h | |
parent | 87fa462ffd6754144f89163a2692eff005beef9c (diff) |
mesa: Add support for OES_texture_cube_map_array
This has a separate enable flag because this extension also requires
OES_geometry_shader. It is possible that some drivers may support
OpenGL ES 3.1 and ARB_texture_cube_map but not support
OES_geometry_shader.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/context.h')
-rw-r--r-- | src/mesa/main/context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h index 9100ae75cdc..4cd149de14e 100644 --- a/src/mesa/main/context.h +++ b/src/mesa/main/context.h @@ -354,7 +354,8 @@ _mesa_has_tessellation(const struct gl_context *ctx) static inline bool _mesa_has_texture_cube_map_array(const struct gl_context *ctx) { - return _mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_texture_cube_map_array; + return _mesa_has_ARB_texture_cube_map_array(ctx) || + _mesa_has_OES_texture_cube_map_array(ctx); } #ifdef __cplusplus |