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

◆ GatherMaskVector256() [3/9]

static unsafe Vector256< float > System.Runtime.Intrinsics.X86.Avx2.GatherMaskVector256 ( Vector256< float > source,
float * baseAddress,
Vector256< int > index,
Vector256< float > mask,
byte scale )
inlinestaticinherited

Definition at line 1222 of file Avx2.cs.

1223 {
1224 return scale switch
1225 {
1226 1 => GatherMaskVector256(source, baseAddress, index, mask, 1),
1227 2 => GatherMaskVector256(source, baseAddress, index, mask, 2),
1228 4 => GatherMaskVector256(source, baseAddress, index, mask, 4),
1229 8 => GatherMaskVector256(source, baseAddress, index, mask, 8),
1230 _ => throw new ArgumentOutOfRangeException("scale"),
1231 };
1232 }
static unsafe Vector256< int > GatherMaskVector256(Vector256< int > source, int *baseAddress, Vector256< int > index, Vector256< int > mask, byte scale)
Definition Avx2.cs:1174

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