/ src / Ryujinx.Graphics.Texture / BlockLinearConstants.cs
BlockLinearConstants.cs
 1  namespace Ryujinx.Graphics.Texture
 2  {
 3      static class BlockLinearConstants
 4      {
 5          public const int GobStride = 64;
 6          public const int GobHeight = 8;
 7  
 8          public const int GobSize = GobStride * GobHeight;
 9      }
10  }