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

Function v_hmul

include/vecmath/dag_vecMath_common.h:209–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

207 return v_max(v_splat_x(a), v_max(v_splat_y(a), v_splat_z(a)));
208}
209VECTORCALL VECMATH_FINLINE vec4f v_hmul(vec4f a)
210{
211 a = v_mul(a, v_rot_1(a));
212 return v_mul(a, v_rot_2(a));
213}
214VECTORCALL VECMATH_FINLINE vec4f v_hmul3(vec3f a)
215{
216 return v_mul(v_splat_x(a), v_mul(v_splat_y(a), v_splat_z(a)));

Callers

nothing calls this directly

Calls 3

v_mulFunction · 0.70
v_rot_1Function · 0.70
v_rot_2Function · 0.70

Tested by

no test coverage detected