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

◆ GatherVector128() [5/15]

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

Definition at line 1006 of file Avx2.cs.

1007 {
1008 return scale switch
1009 {
1010 1 => GatherVector128(baseAddress, index, 1),
1011 2 => GatherVector128(baseAddress, index, 2),
1012 4 => GatherVector128(baseAddress, index, 4),
1013 8 => GatherVector128(baseAddress, index, 8),
1014 _ => throw new ArgumentOutOfRangeException("scale"),
1015 };
1016 }
static unsafe Vector128< int > GatherVector128(int *baseAddress, Vector128< int > index, byte scale)
Definition Avx2.cs:742

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