mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
add _mul for non-square matrices
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user