aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/Size3D.cs
blob: 1c127da6ac634ead6ed14bf2c8b498179fcfb617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Ryujinx.Graphics.Gpu.State
{
    /// <summary>
    /// 3D, 2D or 1D texture size.
    /// </summary>
    struct Size3D
    {
#pragma warning disable CS0649
        public int Width;
        public int Height;
        public int Depth;
#pragma warning restore CS0649
    }
}