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

◆ GatherVector256() [1/9]

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

Definition at line 946 of file Avx2.cs.

947 {
948 return scale switch
949 {
950 1 => GatherVector256(baseAddress, index, 1),
951 2 => GatherVector256(baseAddress, index, 2),
952 4 => GatherVector256(baseAddress, index, 4),
953 8 => GatherVector256(baseAddress, index, 8),
954 _ => throw new ArgumentOutOfRangeException("scale"),
955 };
956 }
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.