diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2004-10-31 18:40:55 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2004-10-31 18:40:55 +0000 |
commit | 450e917c9d71f696bca2ba11960a521e64385ec2 (patch) | |
tree | 3a14e4e2ebc69a1356d6f856333aada2bbdbed44 /src/mesa/main/pixel.c | |
parent | 331cc1dcba8705116288e487f43f460852c2159f (diff) |
Use the _mesa_scale_and_bias_rgba() function in the convolution functions.
Minor clean-ups.
Diffstat (limited to 'src/mesa/main/pixel.c')
-rw-r--r-- | src/mesa/main/pixel.c | 4 |
1 files changed, 1 insertions, 3 deletions
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++) { |