From: Brian Paul Date: Mon, 11 May 2009 16:02:18 +0000 (-0600) Subject: mesa: updated comments for _mesa_generate_mipmap() X-Git-Tag: 062012170305~17489^2~315 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7c3d7353d7b46f5ce2b411f08f9e4c158f1610e0;p=profile%2Fivi%2Fmesa.git mesa: updated comments for _mesa_generate_mipmap() --- diff --git a/src/mesa/main/mipmap.c b/src/mesa/main/mipmap.c index bc8658b..47db2ac 100644 --- a/src/mesa/main/mipmap.c +++ b/src/mesa/main/mipmap.c @@ -1478,9 +1478,12 @@ next_mipmap_level_size(GLenum target, GLint border, /** - * For GL_SGIX_generate_mipmap: - * Generate a complete set of mipmaps from texObj's base-level image. + * Automatic mipmap generation. + * This is the fallback/default function for ctx->Driver.GenerateMipmap(). + * Generate a complete set of mipmaps from texObj's BaseLevel image. * Stop at texObj's MaxLevel or when we get to the 1x1 texture. + * For cube maps, target will be one of + * GL_TEXTURE_CUBE_MAP_POSITIVE/NEGATIVE_X/Y/Z; never GL_TEXTURE_CUBE_MAP. */ void _mesa_generate_mipmap(GLcontext *ctx, GLenum target,