mods boilerplate

This commit is contained in:
Marcin
2025-01-18 16:47:35 +00:00
parent fbf0014c82
commit e14c730d5c
9 changed files with 75 additions and 0 deletions

View File

@@ -412,6 +412,12 @@ glmc_vec4_floor(vec4 v, vec4 dest) {
glm_vec4_floor(v, dest);
}
CGLM_EXPORT
void
glmc_vec4_mods(vec4 v, float s, vec4 dest) {
glm_vec4_mods(v, s, dest);
}
CGLM_EXPORT
float
glmc_vec4_hadd(vec4 v) {