Module: Mesa Branch: master Commit: b3eed73c3b19759b0922a7a57b6068bb69cbd710 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b3eed73c3b19759b0922a7a57b6068bb69cbd710
Author: Ian Romanick <[email protected]> Date: Fri Jan 18 15:43:08 2013 -0800 mesa/es2: Allow depth component cube maps in ES2 if the extension is enabled Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Matt Turner <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> --- src/mesa/main/teximage.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index b2fb41b..2539d86 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -2020,7 +2020,8 @@ texture_error_check( struct gl_context *ctx, target != GL_TEXTURE_RECTANGLE_ARB && target != GL_PROXY_TEXTURE_RECTANGLE_ARB && !((_mesa_is_cube_face(target) || target == GL_PROXY_TEXTURE_CUBE_MAP) && - (ctx->Version >= 30 || ctx->Extensions.EXT_gpu_shader4)) && + (ctx->Version >= 30 || ctx->Extensions.EXT_gpu_shader4 + || (ctx->API == API_OPENGLES2 && ctx->Extensions.OES_depth_texture_cube_map))) && !((target == GL_TEXTURE_CUBE_MAP_ARRAY || target == GL_PROXY_TEXTURE_CUBE_MAP_ARRAY) && ctx->Extensions.ARB_texture_cube_map_array)) { _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
