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

Method Lerp

include/daScript/simulate/sim_policy.h:301–301  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

299 static __forceinline vec4f Mad ( vec4f a, vec4f b, vec4f c, Context &, LineInfo * ) { return v_madd(a,b,c); }
300 static __forceinline vec4f MadS ( vec4f a, vec4f b, vec4f c, Context &, LineInfo * ) { return v_madd(a,v_perm_xxxx(b),c); }
301 static __forceinline vec4f Lerp ( vec4f a, vec4f b, vec4f t, Context &, LineInfo * ) { return v_lerp_vec4f(t,a,b); }
302
303 static __forceinline vec4f Exp ( vec4f a, Context &, LineInfo * ) { return v_exp(a); }
304 static __forceinline vec4f Log ( vec4f a, Context &, LineInfo * ) { return v_log(a); }

Callers

nothing calls this directly

Calls 1

v_lerp_vec4fFunction · 0.85

Tested by

no test coverage detected