From 8acb7e9ea211423e196dac4dfde312ffeb78619a Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 9 May 2001 22:24:22 +0000 Subject: fixed loop bug in _mesa_ConvolutionFilter2D() --- src/mesa/main/convolve.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/main/convolve.c') diff --git a/src/mesa/main/convolve.c b/src/mesa/main/convolve.c index aedbf091a7..faea445e4c 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]; -- cgit v1.2.3