1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-19 17:25:46 -05:00

13 lines
246 B
C#
Raw Normal View History

namespace Ryujinx.Graphics.Gpu.State
{
struct ScissorState
{
public Boolean32 Enable;
public ushort X1;
public ushort X2;
public ushort Y1;
public ushort Y2;
public uint Padding;
}
}