diff options
author | Brian Paul <[email protected]> | 2000-04-04 00:54:23 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-04-04 00:54:23 +0000 |
commit | 941dcc797e1a6317808c1ec43476817286d576ba (patch) | |
tree | 1297979c0ca2ac9a4cb4ccf1f7d2d9d8a67195ae /src/mesa/main/accum.c | |
parent | a9c53fa9ee07ac3fdf7cdc01ddaa67f07ab23e26 (diff) |
use BCOPY macro on FreeBSD
Diffstat (limited to 'src/mesa/main/accum.c')
-rw-r--r-- | src/mesa/main/accum.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/accum.c b/src/mesa/main/accum.c index 17e37f08e35..6ff4e8071a4 100644 --- a/src/mesa/main/accum.c +++ b/src/mesa/main/accum.c @@ -1,10 +1,10 @@ -/* $Id: accum.c,v 1.18 2000/03/31 01:04:52 brianp Exp $ */ +/* $Id: accum.c,v 1.19 2000/04/04 00:54:23 brianp Exp $ */ /* * Mesa 3-D graphics library * Version: 3.3 * - * Copyright (C) 1999 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -487,7 +487,7 @@ _mesa_clear_accum_buffer( GLcontext *ctx ) ctx->Accum.ClearColor[2]==0.0 && ctx->Accum.ClearColor[3]==0.0) { /* Black */ - MEMSET( ctx->DrawBuffer->Accum, 0, buffersize * 4 * sizeof(GLaccum) ); + BZERO( ctx->DrawBuffer->Accum, buffersize * 4 * sizeof(GLaccum) ); } else { /* Not black */ |