mesa: test against MESA_FORMAT_NONE in _mesa_GetTexLevelParameteriv()
authorBrian Paul <brianp@vmware.com>
Thu, 28 Jul 2011 15:43:09 +0000 (09:43 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 28 Jul 2011 23:24:57 +0000 (17:24 -0600)
src/mesa/main/texparam.c

index c4ec295..3f771f0 100644 (file)
@@ -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;