Position.cs
1 namespace Ryujinx.Graphics.Nvdec.Vp9.Types 2 { 3 internal struct Position 4 { 5 public int Row; 6 public int Col; 7 8 public Position(int row, int col) 9 { 10 Row = row; 11 Col = col; 12 } 13 } 14 }
1 namespace Ryujinx.Graphics.Nvdec.Vp9.Types 2 { 3 internal struct Position 4 { 5 public int Row; 6 public int Col; 7 8 public Position(int row, int col) 9 { 10 Row = row; 11 Col = col; 12 } 13 } 14 }