13 lines
257 B
C#
13 lines
257 B
C#
|
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
|
|||
|
}
|
|||
|
}
|