Merge branch 'master' into feature/glm_vec4_make

This commit is contained in:
Recep Aslantas
2023-07-02 22:02:10 +03:00
committed by GitHub
10 changed files with 93 additions and 7 deletions

View File

@@ -417,3 +417,9 @@ void
glmc_vec3_sqrt(vec3 v, vec3 dest) {
glm_vec3_sqrt(v, dest);
}
CGLM_EXPORT
void
glmc_vec3_make(float * __restrict src, vec3 dest) {
glm_vec3_make(src, dest);
}