From fd9f740045f018ebde018ea073911faacdfb9f0f Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 29 Jun 2000 22:06:22 +0000 Subject: fixed GL_ONE_MINUS_CONSTANT_ALPHA bug (geza) --- src/mesa/main/blend.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/main/blend.c') diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c index ddfe6447de..5924585f3f 100644 --- a/src/mesa/main/blend.c +++ b/src/mesa/main/blend.c @@ -1,4 +1,4 @@ -/* $Id: blend.c,v 1.15 2000/05/30 02:28:03 brianp Exp $ */ +/* $Id: blend.c,v 1.16 2000/06/29 22:06:22 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -664,7 +664,7 @@ blend_general( GLcontext *ctx, GLuint n, const GLubyte mask[], dR = dG = dB = ctx->Color.BlendColor[3]; break; case GL_ONE_MINUS_CONSTANT_ALPHA: - dR = dG = dB = 1.0F - ctx->Color.BlendColor[3] * ascale; + dR = dG = dB = 1.0F - ctx->Color.BlendColor[3]; break; case GL_DST_COLOR: /* GL_NV_blend_square */ dR = (GLfloat) Rd * rscale; @@ -718,7 +718,7 @@ blend_general( GLcontext *ctx, GLuint n, const GLubyte mask[], dA = ctx->Color.BlendColor[3]; break; case GL_ONE_MINUS_CONSTANT_ALPHA: - dA = 1.0F - ctx->Color.BlendColor[3] * ascale; + dA = 1.0F - ctx->Color.BlendColor[3]; break; case GL_DST_COLOR: /* GL_NV_blend_square */ dA = (GLfloat) Ad * ascale; -- cgit v1.2.3