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

Function operator +

TSSimd.h:697–708  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

695 }
696
697 inline vec_float operator +(const vec_float& v1, const vec_float& v2)
698 {
699 #if defined(TERATHON_SSE)
700
701 return (_mm_add_ps(v1, v2));
702
703 #elif defined(TERATHON_NEON)
704
705 return (vaddq_f32(v1, v2));
706
707 #endif
708 }
709
710 inline vec_float VecAddScalar(const vec_float& v1, const vec_float& v2)
711 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected