Benjamin Granzow

Results 1 issues of Benjamin Granzow

Into matrix.glsl the transpose missing the 3 column. Below is the corrected one. mat4 transpose(mat4 m) { return mat4( m[0][0], m[1][0], m[2][0], m[3][0], // new col 0 m[0][1], m[1][1], m[2][1],...