diff options
author | Keith Whitwell <[email protected]> | 2001-06-28 17:34:14 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-06-28 17:34:14 +0000 |
commit | 47a28c0b4d4ca27592e3cbb8e4b17d1cd8f7997d (patch) | |
tree | 0fdce5799b53ba8efcb3b30190fa746123cbee3e /src/mesa/tnl/t_imm_exec.c | |
parent | 206eda8b69ab3c63e9597015189f49d1bda9356f (diff) |
restore normal length optimization in dlists
Diffstat (limited to 'src/mesa/tnl/t_imm_exec.c')
-rw-r--r-- | src/mesa/tnl/t_imm_exec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_imm_exec.c b/src/mesa/tnl/t_imm_exec.c index 37dd1597a54..547af43a397 100644 --- a/src/mesa/tnl/t_imm_exec.c +++ b/src/mesa/tnl/t_imm_exec.c @@ -1,4 +1,4 @@ -/* $Id: t_imm_exec.c,v 1.26 2001/05/16 09:28:32 keithw Exp $ */ +/* $Id: t_imm_exec.c,v 1.27 2001/06/28 17:34:14 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -244,6 +244,7 @@ static void _tnl_vb_bind_immediate( GLcontext *ctx, struct immediate *IM ) /* TexCoordPtr's are zeroed in loop below. */ VB->NormalPtr = 0; + VB->NormalLengthPtr = 0; VB->FogCoordPtr = 0; VB->EdgeFlag = 0; VB->IndexPtr[0] = 0; @@ -280,6 +281,8 @@ static void _tnl_vb_bind_immediate( GLcontext *ctx, struct immediate *IM ) tmp->Normal.start = (GLfloat *)(IM->Normal + start); tmp->Normal.count = count; VB->NormalPtr = &tmp->Normal; + if (IM->NormalLengthPtr) + VB->NormalLengthPtr = IM->NormalLengthPtr + start; } if (inputs & VERT_INDEX) { |