From: Brian Paul Date: Wed, 9 May 2001 22:24:22 +0000 (+0000) Subject: fixed loop bug in _mesa_ConvolutionFilter2D() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8acb7e9ea211423e196dac4dfde312ffeb78619a;p=mesa.git fixed loop bug in _mesa_ConvolutionFilter2D() --- diff --git a/src/mesa/main/convolve.c b/src/mesa/main/convolve.c index aedbf091a77..faea445e4c8 100644 --- a/src/mesa/main/convolve.c +++ b/src/mesa/main/convolve.c @@ -1,4 +1,4 @@ -/* $Id: convolve.c,v 1.23 2001/03/19 02:25:35 keithw Exp $ */ +/* $Id: convolve.c,v 1.24 2001/05/09 22:24:22 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -243,7 +243,7 @@ _mesa_ConvolutionFilter2D(GLenum target, GLenum internalFormat, GLsizei width, G { const GLfloat *scale = ctx->Pixel.ConvolutionFilterScale[1]; const GLfloat *bias = ctx->Pixel.ConvolutionFilterBias[1]; - for (i = 0; i < width * height * 4; i++) { + for (i = 0; i < width * height; i++) { GLfloat r = ctx->Convolution2D.Filter[i * 4 + 0]; GLfloat g = ctx->Convolution2D.Filter[i * 4 + 1]; GLfloat b = ctx->Convolution2D.Filter[i * 4 + 2];