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

◆ GatherVector128() [7/15]

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

Definition at line 814 of file Avx2.cs.

815 {
816 return scale switch
817 {
818 1 => GatherVector128(baseAddress, index, 1),
819 2 => GatherVector128(baseAddress, index, 2),
820 4 => GatherVector128(baseAddress, index, 4),
821 8 => GatherVector128(baseAddress, index, 8),
822 _ => throw new ArgumentOutOfRangeException("scale"),
823 };
824 }
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.