FromVfpuRegisterInt() 공개 정적인 메소드

public static FromVfpuRegisterInt ( VfpuRegisterType Type, int Size, VfpuRegisterInt Register ) : VfpuRegisterInfo
Type VfpuRegisterType
Size int
Register VfpuRegisterInt
리턴 VfpuRegisterInfo
예제 #1
0
 public static int[] GetIndicesVector(int size, VfpuRegisterInt register) =>
 GetIndicesVector(VfpuRegisterInfo.FromVfpuRegisterInt(VfpuRegisterType.Vector, size, register));
예제 #2
0
 public static int[,] GetIndicesMatrix(int size, VfpuRegisterInt register) =>
 GetIndicesMatrix(VfpuRegisterInfo.FromVfpuRegisterInt(VfpuRegisterType.Matrix, size, register));
예제 #3
0
 public static int GetIndexCell(VfpuRegisterInt register) =>
 GetIndexCell(VfpuRegisterInfo.FromVfpuRegisterInt(VfpuRegisterType.Cell, 1, register));