MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / vec_load

Function vec_load

include/daScript/misc/vectypes.h:46–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44 __forceinline vec4f vec_loadu_x(const int v) {return v_cast_vec4f(v_seti_x(v));}
45 __forceinline vec4f vec_loadu_x(const unsigned int v) {return v_cast_vec4f(v_seti_x(v));}
46 __forceinline vec4f vec_load(const float *v) {return v_ld(v);}
47 __forceinline vec4f vec_load(const int *v) {return v_cast_vec4f(v_ldi(v));}
48 __forceinline vec4f vec_load(const unsigned int *v) {return vec_load((const int *)v);}
49 __forceinline vec4f vec_loadu(const float *v) {return v_ldu(v);}

Callers

nothing calls this directly

Calls 3

v_ldFunction · 0.50
v_cast_vec4fFunction · 0.50
v_ldiFunction · 0.50

Tested by

no test coverage detected