2019-10-13 06:02:07 +00:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 16:32:06 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Depth bias (also called polygon offset) parameters.
|
|
|
|
/// </summary>
|
2019-10-13 06:02:07 +00:00
|
|
|
struct DepthBiasState
|
|
|
|
{
|
2019-10-26 17:50:52 +00:00
|
|
|
public Boolean32 PointEnable;
|
|
|
|
public Boolean32 LineEnable;
|
|
|
|
public Boolean32 FillEnable;
|
2019-10-13 06:02:07 +00:00
|
|
|
}
|
|
|
|
}
|