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

Dump() public method

public Dump ( ) : void
return void
        public void Dump()
        {
            fixed (float* ValuesPtr = Values)
            {
                Console.WriteLine("----------------------");
                for (int y = 0; y < 4; y++)
                {
                    for (int x = 0; x < 4; x++)
                    {
                        Console.Write("{0}, ", ValuesPtr[y * 4 + x]);
                    }
                    Console.WriteLine("");
                }
                Console.WriteLine("----------------------");
            }
        }