Skip to content

Commit

Permalink
fix glm_ivec2|3_fill and glm_ivec2|3_eq params continue
Browse files Browse the repository at this point in the history
  • Loading branch information
recp committed Sep 5, 2023
1 parent 126f809 commit 5090788
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/cglm/call/ivec2.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ glmc_ivec2_distance(ivec2 a, ivec2 b);

CGLM_EXPORT
void
glmc_ivec2_fill(ivec2 v, float val);
glmc_ivec2_fill(ivec2 v, int val);

CGLM_EXPORT
bool
glmc_ivec2_eq(ivec2 v, float val);
glmc_ivec2_eq(ivec2 v, int val);

CGLM_EXPORT
bool
Expand Down
4 changes: 2 additions & 2 deletions include/cglm/call/ivec3.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ glmc_ivec3_distance(ivec3 a, ivec3 b);

CGLM_EXPORT
void
glmc_ivec3_fill(ivec3 v, float val);
glmc_ivec3_fill(ivec3 v, int val);

CGLM_EXPORT
bool
glmc_ivec3_eq(ivec3 v, float val);
glmc_ivec3_eq(ivec3 v, int val);

CGLM_EXPORT
bool
Expand Down

0 comments on commit 5090788

Please sign in to comment.