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

Function operator -

TSSimd.h:619–630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

617 }
618
619 inline vec_float operator -(const vec_float& v)
620 {
621 #if defined(TERATHON_SSE)
622
623 return (_mm_sub_ps(_mm_setzero_ps(), v));
624
625 #elif defined(TERATHON_NEON)
626
627 return (vnegq_f32(v));
628
629 #endif
630 }
631
632 inline vec_float VecMin(const vec_float& v1, const vec_float& v2)
633 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected