works same as scalar operations on all values
| 181 | VECTORCALL VECMATH_FINLINE vec4i v_cvtu_vec4i(vec4f a);//works correctly on all correct values (positive). on negative - implementation defined |
| 182 | VECTORCALL VECMATH_FINLINE vec4i v_cvtu_vec4i_ieee(vec4f a);//works same as scalar operations on all values |
| 183 | VECTORCALL VECMATH_FINLINE vec4i v_cvt_vec4i(vec4f a){return v_cvti_vec4i(a);} |
| 184 | //! convert to float |
| 185 | VECTORCALL VECMATH_FINLINE vec4f v_cvti_vec4f(vec4i a); |
| 186 | VECTORCALL VECMATH_FINLINE vec4f v_cvtu_vec4f(vec4i a);//works correctly on all accurately representable values (< 1<<24). on others - implementation defined |
no test coverage detected