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-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=26684e0b1a857cc16a2c6f2b542e5ccf3da5acf5;p=mesa.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 c4ec29533e2..3f771f08bc6 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;