| 28 | |
| 29 | VM_INLINE float getX() const { return _mm_cvtss_f32(m); } |
| 30 | VM_INLINE float getY() const { return _mm_cvtss_f32(_mm_shuffle_ps(m, m, _MM_SHUFFLE(1, 1, 1, 1))); } |
| 31 | VM_INLINE float getZ() const { return _mm_cvtss_f32(_mm_shuffle_ps(m, m, _MM_SHUFFLE(2, 2, 2, 2))); } |
| 32 | VM_INLINE float getW() const { return _mm_cvtss_f32(_mm_shuffle_ps(m, m, _MM_SHUFFLE(3, 3, 3, 3))); } |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected