From: Brian Paul Date: Thu, 28 Jul 2011 15:43:09 +0000 (-0600) Subject: mesa: test against MESA_FORMAT_NONE in _mesa_GetTexLevelParameteriv() X-Git-Tag: 062012170305~4896^2~434 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26684e0b1a857cc16a2c6f2b542e5ccf3da5acf5;p=profile%2Fivi%2Fmesa.git mesa: test against MESA_FORMAT_NONE in _mesa_GetTexLevelParameteriv() --- diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index c4ec295..3f771f0 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -888,7 +888,7 @@ _mesa_GetTexLevelParameteriv( GLenum target, GLint level, texObj = _mesa_select_tex_object(ctx, texUnit, target); img = _mesa_select_tex_image(ctx, texObj, target, level); - if (!img || !img->TexFormat) { + if (!img || img->TexFormat == MESA_FORMAT_NONE) { /* undefined texture image */ if (pname == GL_TEXTURE_COMPONENTS) *params = 1;