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

Function v_hmax

include/vecmath/dag_vecMath_common.h:196–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194 return v_min(a, v_rot_2(a));
195}
196VECTORCALL VECMATH_FINLINE vec4f v_hmax(vec4f a)
197{
198 a = v_max(a, v_rot_1(a));
199 return v_max(a, v_rot_2(a));
200}
201VECTORCALL VECMATH_FINLINE vec4f v_hmin3(vec3f a)
202{
203 return v_min(v_splat_x(a), v_min(v_splat_y(a), v_splat_z(a)));

Callers 1

Calls 3

v_maxFunction · 0.70
v_rot_1Function · 0.70
v_rot_2Function · 0.70

Tested by

no test coverage detected