mat4: add zero for call

This commit is contained in:
Recep Aslantas
2019-09-18 23:33:10 +03:00
parent a1283282ef
commit 79087a9813
2 changed files with 10 additions and 0 deletions

View File

@@ -20,6 +20,12 @@ glmc_mat3_identity(mat3 mat) {
glm_mat3_identity(mat);
}
CGLM_EXPORT
void
glmc_mat3_zero(mat3 mat) {
glm_mat3_zero(mat);
}
CGLM_EXPORT
void
glmc_mat3_identity_array(mat3 * __restrict mat, size_t count) {