Fixed GTX_matrix_factorisation build

master
Christophe Riccio ago%!(EXTRA string=8 years)
parent f327d8e9d4
commit 4c43e9e679
  1. 2
      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);

Loading…
Cancel
Save