Transpose() in 1.10

I need a code equivalent to the transpose built-in function that will work with GLSL 1.10.

If you need the transpose of a matrix just for matrix-vector multiplication, simply reverse the multiplication, e.g. transpose(M) * v == v * M.

That worked, thanks.

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.