aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gpu/NsGpuTexture.cs
blob: aac42200599e09ef5817b13778ba5e1514364f65 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.Graphics.Gpu
{
    struct NsGpuTexture
    {
        public int Width;
        public int Height;

        public byte[] Data;
    }
}