| 153 | |
| 154 | |
| 155 | inline Vector<float, 4>::Vector(Vector<int32_t, 4> a) { |
| 156 | v = _mm_cvtepi32_ps(a.v); |
| 157 | } |
| 158 | |
| 159 | inline Vector<int32_t, 4>::Vector(Vector<float, 4> a) { |
| 160 | v = _mm_cvttps_epi32(a.v); |
nothing calls this directly
no outgoing calls
no test coverage detected