From: Brian Paul Date: Wed, 7 Feb 2001 18:59:45 +0000 (+0000) Subject: fixed texel indexing bug in _mesa_GetTexImage() X-Git-Tag: 062012170305~27484 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9a0b12ab00a82a6060ca33e17fc135179024751c;p=profile%2Fivi%2Fmesa.git fixed texel indexing bug in _mesa_GetTexImage() --- diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index edb08e3..22973c3 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -1,4 +1,4 @@ -/* $Id: teximage.c,v 1.74 2001/02/07 16:27:41 brianp Exp $ */ +/* $Id: teximage.c,v 1.75 2001/02/07 18:59:45 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1150,7 +1150,7 @@ _mesa_GetTexImage( GLenum target, GLint level, GLenum format, GLint col; for (col = 0; col < width; col++) { (*texImage->FetchTexel)(ctx, texObj, texImage, - img, row, col, rgba[col]); + col, row, img, rgba[col]); } _mesa_pack_rgba_span( ctx, width, (const GLchan (*)[4])rgba,