BlockLinearConstants.cs 228 B

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