mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 12:41:54 +00:00
Fixed GTX_matrix_factorisation build
This commit is contained in:
parent
f327d8e9d4
commit
4c43e9e679
@ -6,7 +6,7 @@ namespace glm
|
|||||||
template <length_t C, length_t R, typename T, qualifier Q>
|
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)
|
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);
|
tin = fliplr(tin);
|
||||||
mat<C, R, T, Q> out = transpose(tin);
|
mat<C, R, T, Q> out = transpose(tin);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user