diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-11-16 20:58:26 +0000 | 
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-11-16 20:58:26 +0000 | 
| commit | cba90c17adfaa18b6240a553939d2cd7a63c80d7 (patch) | |
| tree | 6fdf734a5b69d31b68dd795d1dc010b6d7245645 /src | |
| parent | f7436f4c8a8864de934d564d7a5cba813bf72a83 (diff) | |
fix bug 9046
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/main/texcompress_fxt1.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/mesa/main/texcompress_fxt1.c b/src/mesa/main/texcompress_fxt1.c index 2ac2c80a08..d3011cedce 100644 --- a/src/mesa/main/texcompress_fxt1.c +++ b/src/mesa/main/texcompress_fxt1.c @@ -105,7 +105,7 @@ texstore_rgb_fxt1(TEXSTORE_PARAMS)     }     dst = _mesa_compressed_image_address(dstXoffset, dstYoffset, 0, -                                        GL_COMPRESSED_RGB_FXT1_3DFX, +                                        dstFormat->MesaFormat,                                          texWidth, (GLubyte *) dstAddr);     fxt1_encode(srcWidth, srcHeight, 3, pixels, srcRowStride, @@ -162,7 +162,7 @@ texstore_rgba_fxt1(TEXSTORE_PARAMS)     }     dst = _mesa_compressed_image_address(dstXoffset, dstYoffset, 0, -                                        GL_COMPRESSED_RGBA_FXT1_3DFX, +                                        dstFormat->MesaFormat,                                          texWidth, (GLubyte *) dstAddr);     fxt1_encode(srcWidth, srcHeight, 4, pixels, srcRowStride, | 
