diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-30 19:49:29 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-30 19:49:29 +0000 |
commit | 6ec6b845fdf3c44436028ad6fff9471d18928719 (patch) | |
tree | 28496bfcefc250606eef9e1ccb201ae22aa099b6 /src/mesa/swrast/s_accum.c | |
parent | 9dc11a3e38a0ac0e650675157a0ccb90dcdce976 (diff) |
s/BZERO/_mesa_bzero/
Diffstat (limited to 'src/mesa/swrast/s_accum.c')
-rw-r--r-- | src/mesa/swrast/s_accum.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_accum.c b/src/mesa/swrast/s_accum.c index 18f82eb015..b42440060e 100644 --- a/src/mesa/swrast/s_accum.c +++ b/src/mesa/swrast/s_accum.c @@ -1,4 +1,4 @@ -/* $Id: s_accum.c,v 1.19 2002/10/24 23:57:24 brianp Exp $ */ +/* $Id: s_accum.c,v 1.20 2002/10/30 19:49:30 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -195,7 +195,8 @@ _mesa_clear_accum_buffer( GLcontext *ctx ) ctx->Accum.ClearColor[2]==0.0 && ctx->Accum.ClearColor[3]==0.0) { /* Black */ - BZERO( ctx->DrawBuffer->Accum, buffersize * 4 * sizeof(GLaccum) ); + _mesa_bzero( ctx->DrawBuffer->Accum, + buffersize * 4 * sizeof(GLaccum) ); } else { /* Not black */ |