glm_perlin_vec2 boilerplate

This commit is contained in:
Marcin
2025-01-17 20:20:04 +00:00
parent a98c270eee
commit 1377a94a17
3 changed files with 22 additions and 0 deletions

View File

@@ -18,4 +18,10 @@ CGLM_EXPORT
float
glmc_perlin_vec3(vec3 p) {
return glm_perlin_vec3(p);
}
CGLM_EXPORT
float
glmc_perlin_vec2(vec2 p) {
return glm_perlin_vec2(p);
}