From af197f5f8f182c04ab29cd3c7a18a0cb95a1d9b7 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 18 Jun 2001 23:55:18 +0000 Subject: fix glDraw/CopyPixels w/ fog bug. minor fog code clean-ups. --- src/mesa/swrast/s_bitmap.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/mesa/swrast/s_bitmap.c') diff --git a/src/mesa/swrast/s_bitmap.c b/src/mesa/swrast/s_bitmap.c index 0c4592bc87..17387ba0af 100644 --- a/src/mesa/swrast/s_bitmap.c +++ b/src/mesa/swrast/s_bitmap.c @@ -1,4 +1,4 @@ -/* $Id: s_bitmap.c,v 1.10 2001/05/30 15:22:05 brianp Exp $ */ +/* $Id: s_bitmap.c,v 1.11 2001/06/18 23:55:18 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -75,10 +75,12 @@ _swrast_Bitmap( GLcontext *ctx, GLint px, GLint py, fragZ = (GLdepth) ( ctx->Current.RasterPos[2] * ctx->DepthMaxF); if (ctx->Fog.Enabled) { - if (ctx->Fog.FogCoordinateSource == GL_FOG_COORDINATE_EXT) + if (ctx->Fog.FogCoordinateSource == GL_FOG_COORDINATE_EXT) { fogCoord = ctx->Current.FogCoord; - else - fogCoord = ctx->Current.RasterDistance; + } + else { + fogCoord = _mesa_z_to_fogfactor(ctx, ctx->Current.RasterDistance); + } } else { fogCoord = 0.0; -- cgit v1.2.3