summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/genmipmap.c
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2016-08-18 10:09:41 +0100
committerIan Romanick <[email protected]>2016-08-26 15:03:15 -0700
commit66b988d09af1a505b428cf2a32c7ee11fb832982 (patch)
treed9864ff7a491f67716dfeb65a4cb41096f8381fc /src/mesa/main/genmipmap.c
parentdaf1a61e1147fcd5d6849920d4836bee7118c406 (diff)
mesa: Use _mesa_has_ARB_texture_cube_map_array instead of open-coding it
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/genmipmap.c')
-rw-r--r--src/mesa/main/genmipmap.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/genmipmap.c b/src/mesa/main/genmipmap.c
index 97d3c62b7bb..5038d5cc053 100644
--- a/src/mesa/main/genmipmap.c
+++ b/src/mesa/main/genmipmap.c
@@ -65,8 +65,7 @@ _mesa_is_valid_generate_texture_mipmap_target(struct gl_context *ctx,
|| !ctx->Extensions.EXT_texture_array;
break;
case GL_TEXTURE_CUBE_MAP_ARRAY:
- error = _mesa_is_gles(ctx) ||
- !ctx->Extensions.ARB_texture_cube_map_array;
+ error = !_mesa_has_ARB_texture_cube_map_array(ctx);
break;
default:
error = true;