From: Brian Paul Date: Thu, 19 Oct 2006 22:26:29 +0000 (+0000) Subject: fixed Fixed/Int bug X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cd5a623386f55704e5f9ac492fe397d75ac03945;p=mesa.git fixed Fixed/Int bug --- diff --git a/src/mesa/swrast/s_alpha.c b/src/mesa/swrast/s_alpha.c index dadb51319cb..87a016512cd 100644 --- a/src/mesa/swrast/s_alpha.c +++ b/src/mesa/swrast/s_alpha.c @@ -136,14 +136,14 @@ _swrast_alpha_test(const GLcontext *ctx, SWspan *span) GLfixed alpha = span->alpha; GLubyte ref; CLAMPED_FLOAT_TO_UBYTE(ref, ctx->Color.AlphaRef); - ALPHA_TEST(alpha, alpha += alphaStep); + ALPHA_TEST(FixedToInt(alpha), alpha += alphaStep); } else if (span->array->ChanType == GL_UNSIGNED_SHORT) { const GLfixed alphaStep = span->alphaStep; GLfixed alpha = span->alpha; GLushort ref; CLAMPED_FLOAT_TO_USHORT(ref, ctx->Color.AlphaRef); - ALPHA_TEST(alpha, alpha += alphaStep); + ALPHA_TEST(FixedToInt(alpha), alpha += alphaStep); } else { const GLfloat alphaStep = span->alphaStep;