mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
fix array index error in _swsetup_Translate (Felix)
This commit is contained in:
parent
7ab89a9770
commit
0095016425
1 changed files with 2 additions and 2 deletions
|
|
@ -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];
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue