Fixed GTX_matrix_factorisation tests to return the number of errors #654

This commit is contained in:
Christophe Riccio
2017-07-07 09:58:34 +04:30
parent 64cfbc0451
commit 566d20e8cf
2 changed files with 48 additions and 50 deletions

View File

@@ -73,7 +73,7 @@ namespace glm
matType<R, (C < R ? C : R), T, P> tr;
matType<(C < R ? C : R), C, T, P> tq;
qr_decompose(tq, tr, tin);
qr_decompose(tin, tq, tr);
tr = fliplr(tr);
r = transpose(tr);