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

◆ GatherVector256() [3/9]

static unsafe Vector256< float > System.Runtime.Intrinsics.X86.Avx2.GatherVector256 ( float * baseAddress,
Vector256< int > index,
byte scale )
inlinestaticinherited

Definition at line 934 of file Avx2.cs.

935 {
936 return scale switch
937 {
938 1 => GatherVector256(baseAddress, index, 1),
939 2 => GatherVector256(baseAddress, index, 2),
940 4 => GatherVector256(baseAddress, index, 4),
941 8 => GatherVector256(baseAddress, index, 8),
942 _ => throw new ArgumentOutOfRangeException("scale"),
943 };
944 }
static unsafe Vector256< int > GatherVector256(int *baseAddress, Vector256< int > index, byte scale)
Definition Avx2.cs:886

References System.Runtime.Intrinsics.X86.Avx2.GatherVector256(), and System.index.