diff options
author | Brian Paul <[email protected]> | 2001-04-17 17:01:33 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-04-17 17:01:33 +0000 |
commit | 0d47d26a68af99c0433c3e88bd062b36146291a7 (patch) | |
tree | 5b3d0c88d731b752573967ee8a3237a250bc8be4 | |
parent | 62c24f315bd8fba0c72e4af4076cfb6985d57c1b (diff) |
fixed mis-ordered args to _math_trans_4f() in _tnl_fill_immediate_drawarrays()
-rw-r--r-- | src/mesa/tnl/t_array_import.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_array_import.c b/src/mesa/tnl/t_array_import.c index ecde7b29439..c930092f347 100644 --- a/src/mesa/tnl/t_array_import.c +++ b/src/mesa/tnl/t_array_import.c @@ -1,4 +1,4 @@ -/* $Id: t_array_import.c,v 1.11 2001/03/12 00:48:43 gareth Exp $ */ +/* $Id: t_array_import.c,v 1.12 2001/04/17 17:01:33 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -506,8 +506,8 @@ void _tnl_fill_immediate_drawarrays( GLcontext *ctx, struct immediate *IM, _math_trans_4f( IM->TexCoord[i] + IM->Start, ctx->Array.TexCoord[i].Ptr, ctx->Array.TexCoord[i].StrideB, - ctx->Array.TexCoord[i].Size, ctx->Array.TexCoord[i].Type, + ctx->Array.TexCoord[i].Size, start, n ); if (ctx->Array.TexCoord[i].Size == 4) |