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

◆ GatherVector128() [13/15]

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

Definition at line 970 of file Avx2.cs.

971 {
972 return scale switch
973 {
974 1 => GatherVector128(baseAddress, index, 1),
975 2 => GatherVector128(baseAddress, index, 2),
976 4 => GatherVector128(baseAddress, index, 4),
977 8 => GatherVector128(baseAddress, index, 8),
978 _ => throw new ArgumentOutOfRangeException("scale"),
979 };
980 }
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.