works same as scalar operations on all values
| 186 | VECTORCALL VECMATH_FINLINE vec4f v_cvtu_vec4f(vec4i a);//works correctly on all accurately representable values (< 1<<24). on others - implementation defined |
| 187 | VECTORCALL VECMATH_FINLINE vec4f v_cvtu_vec4f_ieee(vec4i a);//works same as scalar operations on all values |
| 188 | VECTORCALL VECMATH_FINLINE vec4f v_cvt_vec4f(vec4i a) {return v_cvti_vec4f(a);} |
| 189 | |
| 190 | //! unpacks 4 low/high unsigned shorts (in low 64 bits of vector, .xy) to 4 ints |
| 191 | VECTORCALL VECMATH_FINLINE vec4i v_cvt_lo_ush_vec4i(vec4i a); |
no test coverage detected