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_mat2x3_make(float * __restrict src, mat2x3 dest) {
glm_mat2x3_make(src, dest);
}
CGLM_EXPORT
void
glmc_mat2x3_mul(mat2x3 m1, mat3x2 m2, mat2 dest) {
glm_mat2x3_mul(m1, m2, dest);
}