add _mul for non-square matrices

This commit is contained in:
Recep Aslantas
2023-07-22 12:00:23 +03:00
parent 1e077fd125
commit 6e9e91be05
18 changed files with 286 additions and 0 deletions

View File

@@ -25,3 +25,9 @@ void
glmc_mat4x3_make(float * __restrict src, mat4x3 dest) {
glm_mat4x3_make(src, dest);
}
CGLM_EXPORT
void
glmc_mat4x3_mul(mat4x3 m1, mat3x4 m2, mat4 dest) {
glm_mat4x3_mul(m1, m2, dest);
}