Browse Source

Fixed GTX_matrix_factorisation build

Christophe Riccio 8 years ago
parent
commit
4c43e9e679
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/gtx/matrix_factorisation.inl

+ 1 - 1
glm/gtx/matrix_factorisation.inl

@@ -6,7 +6,7 @@ namespace glm
 	template <length_t C, length_t R, typename T, qualifier Q>
 	GLM_FUNC_QUALIFIER mat<C, R, T, Q> flipud(mat<C, R, T, Q> const& in)
 	{
-		mat<R, C, T, P> tin = transpose(in);
+		mat<R, C, T, Q> tin = transpose(in);
 		tin = fliplr(tin);
 		mat<C, R, T, Q> out = transpose(tin);