diff options
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/context.c | 4 | ||||
-rw-r--r-- | src/mesa/main/imports.h | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 4f93b1a3750..f43b8708e68 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.187 2002/10/29 15:04:35 brianp Exp $ */ +/* $Id: context.c,v 1.188 2002/10/30 19:49:29 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -451,7 +451,7 @@ _mesa_initialize_framebuffer( GLframebuffer *buffer, assert(buffer); assert(visual); - BZERO(buffer, sizeof(GLframebuffer)); + _mesa_bzero(buffer, sizeof(GLframebuffer)); /* sanity checks */ if (softwareDepth ) { diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 463b9cafb9c..35c06d21538 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -1,8 +1,8 @@ -/* $Id: imports.h,v 1.7 2002/10/25 21:06:29 brianp Exp $ */ +/* $Id: imports.h,v 1.8 2002/10/30 19:49:29 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 4.1 + * Version: 5.0 * * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * @@ -49,7 +49,6 @@ #define MEMCPY( DST, SRC, BYTES) _mesa_memcpy(DST, SRC, BYTES) #define MEMSET( DST, VAL, N ) _mesa_memset(DST, VAL, N) -#define BZERO( ADDR, N ) _mesa_bzero(ADDR, N) /* MACs and BeOS don't support static larger than 32kb, so... */ |