From 4c43e9e67989a26f23742f05233edaf9954e058b Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 16 Aug 2017 02:24:28 +0200 Subject: [PATCH] Fixed GTX_matrix_factorisation build --- glm/gtx/matrix_factorisation.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtx/matrix_factorisation.inl b/glm/gtx/matrix_factorisation.inl index 32215b47..f0d9560c 100644 --- a/glm/gtx/matrix_factorisation.inl +++ b/glm/gtx/matrix_factorisation.inl @@ -6,7 +6,7 @@ namespace glm template GLM_FUNC_QUALIFIER mat flipud(mat const& in) { - mat tin = transpose(in); + mat tin = transpose(in); tin = fliplr(tin); mat out = transpose(tin);