diff options
author | Brian Paul <[email protected]> | 2003-03-25 02:23:44 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-03-25 02:23:44 +0000 |
commit | 45bc887da226403f2c41077e40ca38b6f60f1359 (patch) | |
tree | 831190e41ee62449b751e82ab259797bced40524 /src/mesa/swrast/s_blend.c | |
parent | af1bfb7281eb8175adb7bb9774aeafa020e3831b (diff) |
replace _mesa_ prefix with _swrast_, remove s_histogram.[ch]
Diffstat (limited to 'src/mesa/swrast/s_blend.c')
-rw-r--r-- | src/mesa/swrast/s_blend.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_blend.c b/src/mesa/swrast/s_blend.c index 5afc6a030c1..2e98b5f21b7 100644 --- a/src/mesa/swrast/s_blend.c +++ b/src/mesa/swrast/s_blend.c @@ -1,4 +1,4 @@ -/* $Id: s_blend.c,v 1.25 2002/10/17 15:26:39 brianp Exp $ */ +/* $Id: s_blend.c,v 1.26 2003/03/25 02:23:45 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -774,7 +774,7 @@ void _swrast_choose_blend_func( GLcontext *ctx ) * pixel coordinates. */ void -_mesa_blend_span( GLcontext *ctx, const struct sw_span *span, +_swrast_blend_span( GLcontext *ctx, const struct sw_span *span, GLchan rgba[][4] ) { SWcontext *swrast = SWRAST_CONTEXT(ctx); @@ -791,14 +791,14 @@ _mesa_blend_span( GLcontext *ctx, const struct sw_span *span, span->array->x, span->array->y, framebuffer, span->array->mask ); if (swrast->_RasterMask & ALPHABUF_BIT) { - _mesa_read_alpha_pixels( ctx, span->end, + _swrast_read_alpha_pixels( ctx, span->end, span->array->x, span->array->y, framebuffer, span->array->mask ); } } else { /* horizontal run of pixels */ - _mesa_read_rgba_span( ctx, ctx->DrawBuffer, span->end, + _swrast_read_rgba_span( ctx, ctx->DrawBuffer, span->end, span->x, span->y, framebuffer ); } |