mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-23 08:38:08 +02:00
fixed mis-ordered args to _math_trans_4f() in _tnl_fill_immediate_drawarrays()
This commit is contained in:
parent
62c24f315b
commit
0d47d26a68
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue