diff options
author | Brian Paul <[email protected]> | 2000-04-11 21:36:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-04-11 21:36:29 +0000 |
commit | 5223c4d33f6f1f66a30c482cd515558f0591c24a (patch) | |
tree | ae9154242a51069f1267223835abef0a8b89166b /src/mesa/main | |
parent | 716be936866dcb4cd51e774e5403e28645d5c685 (diff) |
renamed alpha buffer functions
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/blend.c | 4 | ||||
-rw-r--r-- | src/mesa/main/buffers.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c index 6bdc76a6ea9..7bbffcb8dfa 100644 --- a/src/mesa/main/blend.c +++ b/src/mesa/main/blend.c @@ -1,4 +1,4 @@ -/* $Id: blend.c,v 1.13 2000/02/24 22:04:03 brianp Exp $ */ +/* $Id: blend.c,v 1.14 2000/04/11 21:38:08 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -826,7 +826,7 @@ _mesa_blend_pixels( GLcontext *ctx, /* Read pixels from current color buffer */ (*ctx->Driver.ReadRGBAPixels)( ctx, n, x, y, dest, mask ); if (ctx->RasterMask & ALPHABUF_BIT) { - gl_read_alpha_pixels( ctx, n, x, y, dest, mask ); + _mesa_read_alpha_pixels( ctx, n, x, y, dest, mask ); } if (!ctx->Color.BlendFunc) diff --git a/src/mesa/main/buffers.c b/src/mesa/main/buffers.c index cd40b521224..336f0223d74 100644 --- a/src/mesa/main/buffers.c +++ b/src/mesa/main/buffers.c @@ -1,4 +1,4 @@ -/* $Id: buffers.c,v 1.5 2000/04/11 21:26:57 brianp Exp $ */ +/* $Id: buffers.c,v 1.6 2000/04/11 21:36:29 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -300,7 +300,7 @@ _mesa_Clear( GLbitfield mask ) /* clear software-based alpha buffer(s) */ if ( (mask & GL_COLOR_BUFFER_BIT) && ctx->Visual->SoftwareAlpha && ctx->Color.ColorMask[RCOMP]) { - gl_clear_alpha_buffers( ctx ); + _mesa_clear_alpha_buffers( ctx ); } #ifdef PROFILE @@ -559,6 +559,6 @@ _mesa_ResizeBuffersMESA( void ) _mesa_alloc_accum_buffer( ctx ); } if (ctx->Visual->SoftwareAlpha) { - gl_alloc_alpha_buffers( ctx ); + _mesa_alloc_alpha_buffers( ctx ); } } |