st/nine: Fix non inversible matrix check

There was a missing absolute value when
checking if the determinant was big enough.

Fixes: https://github.com/iXit/Mesa-3D/issues/292

Signed-off-by: Axel Davy <davyaxel0@gmail.com>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Tested-by: Dieter Nützel <Dieter@nuetzel-hh.de>

CC: "17.3 18.0" <mesa-stable@lists.freedesktop.org>
This commit is contained in:
Axel Davy 2018-03-10 18:49:59 +01:00
parent f61e9a958b
commit dbc24835d7
1 changed files with 1 additions and 1 deletions

View File

@ -2474,7 +2474,7 @@ nine_d3d_matrix_inverse(D3DMATRIX *D, const D3DMATRIX *M)
M->m[2][0] * D->m[0][2] +
M->m[3][0] * D->m[0][3];
if (det < 1e-30) {/* non inversible */
if (fabsf(det) < 1e-30) {/* non inversible */
*D = *M; /* wine tests */
return;
}