| 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); } |
nothing calls this directly
no test coverage detected