namespace Ryujinx.Graphics.Gpu
{
    struct NsGpuTexture
    {
        public int Width;
        public int Height;

        public byte[] Data;
    }
}