allow GetTexImage with RGBA format and COLOR_INDEX internalformat
authorDaniel Borca <dborca@users.sourceforge.net>
Fri, 10 Dec 2004 07:36:35 +0000 (07:36 +0000)
committerDaniel Borca <dborca@users.sourceforge.net>
Fri, 10 Dec 2004 07:36:35 +0000 (07:36 +0000)
src/mesa/main/teximage.c

index 4dff275..127e9bf 100644 (file)
@@ -1954,10 +1954,12 @@ _mesa_GetTexImage( GLenum target, GLint level, GLenum format,
    }
 
    /* Make sure the requested image format is compatible with the
-    * texture's format.
+    * texture's format. We let the colorformat-indexformat go through,
+    * because the texelfetcher will dequantize to full rgba.
     */
    if (is_color_format(format)
-       && !is_color_format(texImage->TexFormat->BaseFormat)) {
+       && !is_color_format(texImage->TexFormat->BaseFormat)
+       && !is_index_format(texImage->TexFormat->BaseFormat)) {
       _mesa_error(ctx, GL_INVALID_OPERATION, "glGetTexImage(format mismatch)");
       return;
    }