| 4198 | __forceinline vec4f cvt_ufloat4 ( uint4 i ) { return v_cvt_vec4f(v_cast_vec4i(vec4f(i))); } |
| 4199 | |
| 4200 | __forceinline vec4f cvt_int2 ( float2 f ) { return v_cast_vec4f(v_cvt_vec4i(f)); } |
| 4201 | __forceinline vec4f cvt_int3 ( float3 f ) { return v_cast_vec4f(v_cvt_vec4i(f)); } |
| 4202 | __forceinline vec4f cvt_int4 ( float4 f ) { return v_cast_vec4f(v_cvt_vec4i(f)); } |
| 4203 | __forceinline vec4f cvt_uint2 ( float2 f ) { return v_cast_vec4f(v_cvt_vec4i(f)); } |
nothing calls this directly
no test coverage detected