vec: minnadd and maxadd helpers

This commit is contained in:
Recep Aslantas
2018-11-29 10:50:24 +03:00
parent 4e08b7e335
commit 6d6954b208
9 changed files with 184 additions and 18 deletions

View File

@@ -117,6 +117,14 @@ CGLM_EXPORT
void
glmc_vec4_muladds(vec4 a, float s, vec4 dest);
CGLM_EXPORT
void
glmc_vec4_maxadd(vec4 a, vec4 b, vec4 dest);
CGLM_EXPORT
void
glmc_vec4_minadd(vec4 a, vec4 b, vec4 dest);
CGLM_EXPORT
void
glmc_vec4_negate(vec4 v);