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_context.c | |
parent | af1bfb7281eb8175adb7bb9774aeafa020e3831b (diff) |
replace _mesa_ prefix with _swrast_, remove s_histogram.[ch]
Diffstat (limited to 'src/mesa/swrast/s_context.c')
-rw-r--r-- | src/mesa/swrast/s_context.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c index 29b73df3657..e36da390302 100644 --- a/src/mesa/swrast/s_context.c +++ b/src/mesa/swrast/s_context.c @@ -1,4 +1,4 @@ -/* $Id: s_context.c,v 1.47 2003/03/15 17:33:27 brianp Exp $ */ +/* $Id: s_context.c,v 1.48 2003/03/25 02:23:45 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -601,12 +601,12 @@ _swrast_flush( GLcontext *ctx ) if (swrast->PointSpan.end > 0) { if (ctx->Visual.rgbMode) { if (ctx->Texture._EnabledUnits) - _mesa_write_texture_span(ctx, &(swrast->PointSpan)); + _swrast_write_texture_span(ctx, &(swrast->PointSpan)); else - _mesa_write_rgba_span(ctx, &(swrast->PointSpan)); + _swrast_write_rgba_span(ctx, &(swrast->PointSpan)); } else { - _mesa_write_index_span(ctx, &(swrast->PointSpan)); + _swrast_write_index_span(ctx, &(swrast->PointSpan)); } swrast->PointSpan.end = 0; } |