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

@@ -240,7 +240,7 @@ _mesa_init_program_struct( GLcontext *ctx, struct gl_program *prog,
(void) ctx;
if (prog) {
GLuint i;
_mesa_bzero(prog, sizeof(*prog));
memset(prog, 0, sizeof(*prog));
prog->Id = id;
prog->Target = target;
prog->Resident = GL_TRUE;