mesa: replace _mesa_bzero() with memset()

This commit is contained in:
Brian Paul
2010-02-19 08:32:36 -07:00
parent 2240ba10f3
commit 6bf1ea897f
17 changed files with 27 additions and 42 deletions

View File

@@ -295,7 +295,7 @@ _mesa_initialize_buffer_object( struct gl_buffer_object *obj,
{
(void) target;
_mesa_bzero(obj, sizeof(struct gl_buffer_object));
memset(obj, 0, sizeof(struct gl_buffer_object));
_glthread_INIT_MUTEX(obj->Mutex);
obj->RefCount = 1;
obj->Name = name;