blob: 0a125804e44801d87da491e329de470f84b799b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Depth bias (also called polygon offset) parameters.
/// </summary>
struct DepthBiasState
{
#pragma warning disable CS0649
public Boolean32 PointEnable;
public Boolean32 LineEnable;
public Boolean32 FillEnable;
#pragma warning restore CS0649
}
}
|