summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_vp_build.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2005-05-11 15:18:59 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2005-05-11 15:18:59 +0000
commit49d8cbe8d110e5c0a23300b5b82d110286bc3609 (patch)
treef4786bc0a31fcc8bc26cef44778c573369898561 /src/mesa/tnl/t_vp_build.c
parent9d148e6b2be33fe7ac72aaa3be239dc1bc8878a9 (diff)
Use _mesa_memset rather than memset
Diffstat (limited to 'src/mesa/tnl/t_vp_build.c')
-rw-r--r--src/mesa/tnl/t_vp_build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c
index 5d2f441ff9..35cea8454a 100644
--- a/src/mesa/tnl/t_vp_build.c
+++ b/src/mesa/tnl/t_vp_build.c
@@ -1130,7 +1130,7 @@ void _tnl_UpdateFixedFunctionProgram( GLcontext *ctx )
return;
- memset(&p, 0, sizeof(p));
+ _mesa_memset(&p, 0, sizeof(p));
p.ctx = ctx;
p.program = (struct vertex_program *)ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
p.eye_position = undef;