From 450e917c9d71f696bca2ba11960a521e64385ec2 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sun, 31 Oct 2004 18:40:55 +0000 Subject: Use the _mesa_scale_and_bias_rgba() function in the convolution functions. Minor clean-ups. --- src/mesa/main/pixel.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/mesa/main/pixel.c') diff --git a/src/mesa/main/pixel.c b/src/mesa/main/pixel.c index 3d36c66e5b..2a0df1f347 100644 --- a/src/mesa/main/pixel.c +++ b/src/mesa/main/pixel.c @@ -1074,14 +1074,12 @@ _mesa_PixelTransferi( GLenum pname, GLint param ) * Apply scale and bias factors to an array of RGBA pixels. */ void -_mesa_scale_and_bias_rgba(GLcontext *ctx, GLuint n, GLfloat rgba[][4], +_mesa_scale_and_bias_rgba(GLuint n, GLfloat rgba[][4], GLfloat rScale, GLfloat gScale, GLfloat bScale, GLfloat aScale, GLfloat rBias, GLfloat gBias, GLfloat bBias, GLfloat aBias) { - (void) ctx; - if (rScale != 1.0 || rBias != 0.0) { GLuint i; for (i = 0; i < n; i++) { -- cgit v1.2.3