0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 03:21:41 +00:00
ryujinx-fork/Ryujinx.Graphics.Gpu/State/ScissorState.cs

15 lines
308 B
C#
Raw Normal View History

namespace Ryujinx.Graphics.Gpu.State
{
struct ScissorState
{
#pragma warning disable CS0649
public Boolean32 Enable;
public ushort X1;
public ushort X2;
public ushort Y1;
public ushort Y2;
public uint Padding;
#pragma warning restore CS0649
}
}