Fixed GTX_matrix_factorisation build

This commit is contained in:
Christophe Riccio 2017-08-16 02:24:28 +02:00
parent f327d8e9d4
commit 4c43e9e679

View File

@ -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);