Size.cs
 1  namespace Ryujinx.Graphics.Texture
 2  {
 3      public readonly struct Size
 4      {
 5          public int Width { get; }
 6          public int Height { get; }
 7          public int Depth { get; }
 8  
 9          public Size(int width, int height, int depth)
10          {
11              Width = width;
12              Height = height;
13              Depth = depth;
14          }
15      }
16  }