diff options
author | Karl Schultz <[email protected]> | 2001-09-19 20:30:44 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2001-09-19 20:30:44 +0000 |
commit | 7c4268176eaaeb45003db4d5042a518b84c9f6dc (patch) | |
tree | 7359bd33704a6bd32b471049be4744ce27db099f /src/mesa/swrast/s_accum.c | |
parent | 2fc06af470da1929ac2fffc8d38a5d5ac87490bb (diff) |
silence compiler warnings (last batch for src)
Diffstat (limited to 'src/mesa/swrast/s_accum.c')
-rw-r--r-- | src/mesa/swrast/s_accum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_accum.c b/src/mesa/swrast/s_accum.c index 6d3e2feb6ab..5b7936b210a 100644 --- a/src/mesa/swrast/s_accum.c +++ b/src/mesa/swrast/s_accum.c @@ -1,4 +1,4 @@ -/* $Id: s_accum.c,v 1.12 2001/07/13 20:07:37 brianp Exp $ */ +/* $Id: s_accum.c,v 1.13 2001/09/19 20:30:44 kschultz Exp $ */ /* * Mesa 3-D graphics library @@ -108,7 +108,7 @@ static void rescale_accum( GLcontext *ctx ) { SWcontext *swrast = SWRAST_CONTEXT(ctx); const GLuint n = ctx->DrawBuffer->Width * ctx->DrawBuffer->Height * 4; - const GLfloat s = swrast->_IntegerAccumScaler * (32767.0 / CHAN_MAXF); + const GLfloat s = swrast->_IntegerAccumScaler * (32767.0F / CHAN_MAXF); GLaccum *accum = ctx->DrawBuffer->Accum; GLuint i; |