MCPcopy Create free account
hub / github.com/EricLengyel/Terathon-Math-Library / VecMin

Function VecMin

TSSimd.h:632–643  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

630 }
631
632 inline vec_float VecMin(const vec_float& v1, const vec_float& v2)
633 {
634 #if defined(TERATHON_SSE)
635
636 return (_mm_min_ps(v1, v2));
637
638 #elif defined(TERATHON_NEON)
639
640 return (vminq_f32(v1, v2));
641
642 #endif
643 }
644
645 inline vec_float VecMinScalar(const vec_float& v1, const vec_float& v2)
646 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected