Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Create() [5/17]

static Vector64< float > System.Runtime.Intrinsics.Vector64< T >.Create ( float value)
inlinestatic

Definition at line 171 of file Vector64.cs.

172 {
174 {
175 }
176 return SoftwareFallback(value);
177 unsafe static Vector64<float> SoftwareFallback(float value)
178 {
179 float* source = stackalloc float[2] { value, value };
180 return Unsafe.AsRef<Vector64<float>>(source);
181 }
182 }

References System.Runtime.Intrinsics.Arm.AdvSimd.IsSupported, System.source, and System.value.