diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-08-08 16:54:43 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-08-08 16:54:43 +0000 |
commit | ebe671cfad0cdf185255b4a98b9ae561e6aa77b2 (patch) | |
tree | 7a75a9d328e0c2a57dcde8116990f784eb050c10 /src/mesa | |
parent | ea53a5b5abcd22abce33a577daafa298bac0ab15 (diff) |
comments
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/tnl/t_vb_normals.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_vb_normals.c b/src/mesa/tnl/t_vb_normals.c index 541aa885df..ac09792138 100644 --- a/src/mesa/tnl/t_vb_normals.c +++ b/src/mesa/tnl/t_vb_normals.c @@ -1,4 +1,4 @@ -/* $Id: t_vb_normals.c,v 1.14 2002/04/08 15:37:13 brianp Exp $ */ +/* $Id: t_vb_normals.c,v 1.15 2002/08/08 16:54:43 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -73,9 +73,9 @@ static GLboolean run_normal_stage( GLcontext *ctx, store->NormalTransform( ctx->ModelviewMatrixStack.Top, ctx->_ModelViewInvScale, - VB->NormalPtr, + VB->NormalPtr, /* input normals */ lengths, - &store->normal ); + &store->normal ); /* resulting normals */ } VB->NormalPtr = &store->normal; |