aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalTexture.cs
blob: fcf1f1ad2b6ad9ea9c1de258b860e42d50ae5700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Ryujinx.Graphics.Gal
{
    public struct GalTexture
    {
        public byte[] Data;

        public int Width;
        public int Height;

        public GalTextureFormat Format;

        public GalTexture(byte[] Data, int Width, int Height, GalTextureFormat Format)
        {
            this.Data   = Data;
            this.Width  = Width;
            this.Height = Height;
            this.Format = Format;
        }
    }
}