Fixed GTX_matrix_factorisation build
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user