Ryujinx/Ryujinx.Graphics.Gpu/State/DepthBiasState.cs

15 lines
350 B
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Depth bias (also called polygon offset) parameters.
/// </summary>
2019-10-13 08:02:07 +02:00
struct DepthBiasState
{
#pragma warning disable CS0649
public Boolean32 PointEnable;
public Boolean32 LineEnable;
public Boolean32 FillEnable;
#pragma warning restore CS0649
2019-10-13 08:02:07 +02:00
}
}