Available on x86 and target feature
sse
only.Expand description
Construct a __m128
from four floating point values lowest to highest.
This matches the memory order of __m128
, i.e., a
will be the lowest 32
bits of the result, and d
the highest.
assert_eq!(__m128::new(a, b, c, d), _mm_setr_ps(a, b, c, d));