aboutsummaryrefslogblamecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/ScreenScissorState.cs
blob: 2fbf99344dc128f3911529a215df9775077119a3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12










                                       
namespace Ryujinx.Graphics.Gpu.State
{
    struct ScreenScissorState
    {
#pragma warning disable CS0649
        public ushort X;
        public ushort Width;
        public ushort Y;
        public ushort Height;
#pragma warning restore CS0649
    }
}