Luna::Simd::mul_f4
float4 mul_f4(float4 a, float4 b)
Multiplies packed single-precision (32-bit) floating-point elements in a
and b
, and stores the results in dst
.
dst.x = a.x * b.x
dst.y = a.y * b.y
dst.z = a.z * b.z
dst.w = a.w * b.w
float4 mul_f4(float4 a, float4 b)
Multiplies packed single-precision (32-bit) floating-point elements in a
and b
, and stores the results in dst
.
dst.x = a.x * b.x
dst.y = a.y * b.y
dst.z = a.z * b.z
dst.w = a.w * b.w