GalTexture.cs 439 B

1234567891011121314151617181920
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public struct GalTexture
  4. {
  5. public byte[] Data;
  6. public int Width;
  7. public int Height;
  8. public GalTextureFormat Format;
  9. public GalTexture(byte[] Data, int Width, int Height, GalTextureFormat Format)
  10. {
  11. this.Data = Data;
  12. this.Width = Width;
  13. this.Height = Height;
  14. this.Format = Format;
  15. }
  16. }
  17. }