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

Function VecLoad

TSSimd.h:423–434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

421 #endif
422
423 inline vec_float VecLoad(const float *ptr)
424 {
425 #if defined(TERATHON_SSE)
426
427 return (_mm_load_ps(ptr));
428
429 #elif defined(TERATHON_NEON)
430
431 return (vld1q_f32(ptr));
432
433 #endif
434 }
435
436 inline vec_float VecLoadUnaligned(const float *ptr)
437 {

Callers 6

Mat4DClass · 0.85
InverseMethod · 0.85
operator *Method · 0.85
TransformVector3DMethod · 0.85
TransformPoint3DMethod · 0.85
InverseUnitDetMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected