CSPspEmu.Core.Gpu.State.GpuMatrix4x3Struct.SetPosition C# (CSharp) Method

SetPosition() public method

public SetPosition ( int Column, int Row, float Value ) : void
Column int
Row int
Value float
return void
        public void SetPosition(int Column, int Row, float Value)
        {
            fixed (float* ValuesPtr = Values)
            {
                ValuesPtr[Row * 4 + Column] = Value;
            }
        }