Committing in .

Modified Files:
 	Mesa/src/tnl/t_imm_alloc.c

 added initialization for Normals

----------------------------------------------------------------------
This commit is contained in:
Jouk Jansen 2001-09-07 06:55:59 +00:00
parent 190d34874c
commit 9348cfc6e8

View file

@ -1,4 +1,4 @@
/* $Id: t_imm_alloc.c,v 1.9 2001/06/28 17:34:14 keithw Exp $ */
/* $Id: t_imm_alloc.c,v 1.10 2001/09/07 06:55:59 joukj Exp $ */
/*
* Mesa 3-D graphics library
@ -77,6 +77,7 @@ static struct immediate *real_alloc_immediate( GLcontext *ctx )
*/
MEMSET(IM->Flag, 0, sizeof(IM->Flag));
MEMSET(IM->Normal, 0.0 , sizeof(IM->Normal));
return IM;
}