fix array index error in _swsetup_Translate (Felix)

This commit is contained in:
Brian Paul 2004-03-21 16:12:13 +00:00
parent 7ab89a9770
commit 0095016425

View file

@ -1,6 +1,6 @@
/*
* Mesa 3-D graphics library
* Version: 6.0.1
* Version: 6.1
*
* Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
*
@ -225,7 +225,7 @@ _swsetup_Translate( GLcontext *ctx, const void *vertex, SWvertex *dest )
dest->win[0] = m[0] * tmp[0] + m[12];
dest->win[1] = m[5] * tmp[1] + m[13];
dest->win[2] = m[10] * tmp[2] + m[15];
dest->win[2] = m[10] * tmp[2] + m[14];
dest->win[3] = tmp[3];