From: Axel Davy Date: Sat, 10 Mar 2018 17:49:59 +0000 (+0100) Subject: st/nine: Fix non inversible matrix check X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dbc24835d75466951a44b391b42e39461a6ac5a2;p=mesa.git 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 Reviewed-by: Patrick Rudolph Tested-by: Dieter Nützel CC: "17.3 18.0" --- diff --git a/src/gallium/state_trackers/nine/nine_ff.c b/src/gallium/state_trackers/nine/nine_ff.c index 6c30839b29b..d7b697caeed 100644 --- a/src/gallium/state_trackers/nine/nine_ff.c +++ b/src/gallium/state_trackers/nine/nine_ff.c @@ -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; }