diff options
Diffstat (limited to 'src/mesa/swrast/s_zoom.c')
-rw-r--r-- | src/mesa/swrast/s_zoom.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mesa/swrast/s_zoom.c b/src/mesa/swrast/s_zoom.c index 74053d0a5b2..ff3d3f5e0c1 100644 --- a/src/mesa/swrast/s_zoom.c +++ b/src/mesa/swrast/s_zoom.c @@ -1,4 +1,4 @@ -/* $Id: s_zoom.c,v 1.5 2001/05/03 22:13:32 brianp Exp $ */ +/* $Id: s_zoom.c,v 1.6 2001/05/15 21:30:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -143,8 +143,7 @@ _mesa_write_zoomed_rgba_span( GLcontext *ctx, /* write the span */ for (r=r0; r<r1; r++) { _mesa_write_rgba_span( ctx, m, x+skipcol, r, zdepth, - (fog ? zfog : 0), - zrgba, GL_BITMAP ); + (fog ? zfog : 0), zrgba, NULL, GL_BITMAP ); } } @@ -254,7 +253,7 @@ _mesa_write_zoomed_rgb_span( GLcontext *ctx, /* write the span */ for (r=r0; r<r1; r++) { _mesa_write_rgba_span( ctx, m, x+skipcol, r, zdepth, - (fog ? zfog : 0), zrgba, GL_BITMAP ); + (fog ? zfog : 0), zrgba, NULL, GL_BITMAP ); } } @@ -361,7 +360,7 @@ _mesa_write_zoomed_index_span( GLcontext *ctx, /* write the span */ for (r=r0; r<r1; r++) { _mesa_write_index_span( ctx, m, x+skipcol, r, zdepth, - (fog ? zfog : 0), zindexes, GL_BITMAP ); + (fog ? zfog : 0), zindexes, NULL, GL_BITMAP ); } } |