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_mat4x2_make(float * __restrict src, mat4x2 dest) {
glm_mat4x2_make(src, dest);
}
CGLM_EXPORT
void
glmc_mat4x2_mul(mat4x2 m1, mat2x4 m2, mat4 dest) {
glm_mat4x2_mul(m1, m2, dest);
}