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

◆ GatherVector128() [10/15]

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

Definition at line 838 of file Avx2.cs.

839 {
840 return scale switch
841 {
842 1 => GatherVector128(baseAddress, index, 1),
843 2 => GatherVector128(baseAddress, index, 2),
844 4 => GatherVector128(baseAddress, index, 4),
845 8 => GatherVector128(baseAddress, index, 8),
846 _ => throw new ArgumentOutOfRangeException("scale"),
847 };
848 }
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.