fix glm_ivec2|3_fill and glm_ivec2|3_eq params

This commit is contained in:
Recep Aslantas
2023-09-05 20:19:33 +03:00
parent e0e7e380e5
commit 126f809dae
6 changed files with 16 additions and 16 deletions

View File

@@ -82,13 +82,13 @@ glmc_ivec2_distance(ivec2 a, ivec2 b) {
CGLM_EXPORT
void
glmc_ivec2_fill(ivec2 v, float val) {
glmc_ivec2_fill(ivec2 v, int val) {
glm_ivec2_fill(v, val);
}
CGLM_EXPORT
bool
glmc_ivec2_eq(ivec2 v, float val) {
glmc_ivec2_eq(ivec2 v, int val) {
return glm_ivec2_eq(v, val);
}

View File

@@ -82,13 +82,13 @@ glmc_ivec3_distance(ivec3 a, ivec3 b) {
CGLM_EXPORT
void
glmc_ivec3_fill(ivec3 v, float val) {
glmc_ivec3_fill(ivec3 v, int val) {
glm_ivec3_fill(v, val);
}
CGLM_EXPORT
bool
glmc_ivec3_eq(ivec3 v, float val) {
glmc_ivec3_eq(ivec3 v, int val) {
return glm_ivec3_eq(v, val);
}