Skip to content

Commit

Permalink
xx_make_transpose -> xx_transpose
Browse files Browse the repository at this point in the history
  • Loading branch information
asbott authored Nov 4, 2024
1 parent 23a7548 commit 7953992
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oogabooga/linmath.c
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ Matrix4 m4_scalar(float32 scalar) {

inline Matrix4 m4_identity() { return m4_scalar(1.0); }

Matrix4 m4_make_transpose(Matrix4 m) {
Matrix4 m4_transpose(Matrix4 m) {
Matrix4 transpose;
transpose.m[0][0] = m.m[0][0];
transpose.m[0][1] = m.m[1][0];
Expand Down Expand Up @@ -887,7 +887,7 @@ Matrix3 m3_scalar(float32 scalar) {

inline Matrix3 m3_identity() { return m3_scalar(1.0f); }

Matrix3 m3_make_transpose(Matrix3 m) {
Matrix3 m3_transpose(Matrix3 m) {
Matrix3 transpose;
transpose.m[0][0] = m.m[0][0];
transpose.m[0][1] = m.m[1][0];
Expand Down

0 comments on commit 7953992

Please sign in to comment.