NsGpuTexture.cs 152 B

12345678910
  1. namespace Ryujinx.Graphics.Gpu
  2. {
  3. struct NsGpuTexture
  4. {
  5. public int Width;
  6. public int Height;
  7. public byte[] Data;
  8. }
  9. }