rename mat4 functions

This commit is contained in:
Recep Aslantas
2016-09-17 12:30:33 +03:00
parent ab58ae76eb
commit 4d171c8758
2 changed files with 10 additions and 10 deletions

View File

@@ -159,7 +159,7 @@ glm_rotate_x(mat4 m, float rad, mat4 dest) {
t[2][1] = -sinVal;
t[2][2] = cosVal;
glm_mat_mul4(t, m, dest);
glm_mat4_mul(t, m, dest);
}
CGLM_INLINE
@@ -177,7 +177,7 @@ glm_rotate_y(mat4 m, float rad, mat4 dest) {
t[2][0] = sinVal;
t[2][2] = cosVal;
glm_mat_mul4(t, m, dest);
glm_mat4_mul(t, m, dest);
}
CGLM_INLINE
@@ -195,7 +195,7 @@ glm_rotate_z(mat4 m, float rad, mat4 dest) {
t[1][0] = -sinVal;
t[1][1] = cosVal;
glm_mat_mul4(t, m, dest);
glm_mat4_mul(t, m, dest);
}
#endif /* cglm_affine_h */