diff options
author | Brian Paul <[email protected]> | 2000-04-05 14:40:04 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-04-05 14:40:04 +0000 |
commit | 9c4f016d2171319ad8cde2366d76fd7f70520621 (patch) | |
tree | 339b23451deb452c461a8b20bce8a48938285617 /src/mesa/main/buffers.c | |
parent | 2f8b4c9d2f9a313af9c1d4ce1dbbd5fdc1fafa16 (diff) |
minor clean-ups, renaming
Diffstat (limited to 'src/mesa/main/buffers.c')
-rw-r--r-- | src/mesa/main/buffers.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/buffers.c b/src/mesa/main/buffers.c index 9a0f713bb1e..9e836276a51 100644 --- a/src/mesa/main/buffers.c +++ b/src/mesa/main/buffers.c @@ -1,4 +1,4 @@ -/* $Id: buffers.c,v 1.3 2000/02/02 22:16:04 brianp Exp $ */ +/* $Id: buffers.c,v 1.4 2000/04/05 14:40:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -110,7 +110,7 @@ clear_color_buffer_with_masking( GLcontext *ctx ) rgba[j][BCOMP] = b; rgba[j][ACOMP] = a; } - gl_mask_rgba_span( ctx, width, x, y + i, rgba ); + _mesa_mask_rgba_span( ctx, width, x, y + i, rgba ); (*ctx->Driver.WriteRGBASpan)( ctx, width, x, y + i, (CONST GLubyte (*)[4])rgba, NULL ); } @@ -125,7 +125,7 @@ clear_color_buffer_with_masking( GLcontext *ctx ) for (j=0;j<width;j++) { span[j] = ctx->Color.ClearIndex; } - gl_mask_index_span( ctx, width, x, y + i, span ); + _mesa_mask_index_span( ctx, width, x, y + i, span ); (*ctx->Driver.WriteCI32Span)( ctx, width, x, y + i, span, mask ); } } |