Skip to content

Commit

Permalink
Merge pull request #420 from not-kaz/master
Browse files Browse the repository at this point in the history
Fixed 'missing-prototypes' warnings for some vec2 funcs.
  • Loading branch information
recp committed Jun 11, 2024
2 parents a93a9ef + 5b2c37f commit be0defb
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions include/cglm/call/vec2.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ CGLM_EXPORT
void
glmc_vec2(float * __restrict v, vec2 dest);

CGLM_EXPORT
void
glmc_vec2_fill(vec2 v, float val);

CGLM_EXPORT
bool
glmc_vec2_eq(vec2 v, float val);

CGLM_EXPORT
bool
glmc_vec2_eqv(vec2 a, vec2 b);

CGLM_EXPORT
void
glmc_vec2_copy(vec2 a, vec2 dest);
Expand Down

0 comments on commit be0defb

Please sign in to comment.