| 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); } |
| 305 | static __forceinline vec4f Exp2 ( vec4f a, Context &, LineInfo * ) { return v_exp2(a); } |
| 306 | static __forceinline vec4f Log2 ( vec4f a, Context &, LineInfo * ) { return v_log2_est_p5(a); } |