missing call functions from vec2

This commit is contained in:
duarm
2023-09-04 20:14:59 -03:00
parent 9d0c9fdb87
commit d3169b12a7

View File

@@ -20,6 +20,18 @@ glmc_vec2_fill(vec2 v, float val) {
glm_vec2_fill(v, val);
}
CGLM_EXPORT
bool
glmc_vec2_eq(vec2 v, float val) {
return glm_vec2_eq(v, val);
}
CGLM_EXPORT
bool
glmc_vec2_eqv(vec2 a, vec2 b) {
return glm_vec2_eqv(a, b);
}
CGLM_EXPORT
void
glmc_vec2_copy(vec2 a, vec2 dest) {