diff options
Diffstat (limited to 'vec_builtin.h')
-rw-r--r-- | vec_builtin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vec_builtin.h b/vec_builtin.h index a240a6d..f7db8ca 100644 --- a/vec_builtin.h +++ b/vec_builtin.h @@ -532,6 +532,7 @@ namespace vecmathlib { realvec_t fmax(realvec_t y) const { return MF::vml_fmax(*this, y); } realvec_t fmin(realvec_t y) const { return MF::vml_fmin(*this, y); } realvec_t fmod(realvec_t y) const { return MF::vml_fmod(*this, y); } + realvec frexp(intvec_t& r) const { return MF::vml_frexp(*this, r); } realvec_t hypot(realvec_t y) const { return MF::vml_hypot(*this, y); } intvec_t ilogb() const { return MF::vml_ilogb(*this); } boolvec_t isfinite() const { return MF::vml_isfinite(*this); } |