add some missing non-square matrix funcs

This commit is contained in:
Recep Aslantas
2023-07-22 01:21:14 +03:00
parent cb4a1b2677
commit 1e077fd125
19 changed files with 304 additions and 3 deletions

View File

@@ -8,6 +8,18 @@
#include "../include/cglm/cglm.h"
#include "../include/cglm/call.h"
CGLM_EXPORT
void
glmc_mat4x3_copy(mat4x3 mat, mat4x3 dest) {
glm_mat4x3_copy(mat, dest);
}
CGLM_EXPORT
void
glmc_mat4x3_zero(mat4x3 mat) {
glm_mat4x3_zero(mat);
}
CGLM_EXPORT
void
glmc_mat4x3_make(float * __restrict src, mat4x3 dest) {