blob: 752706252b46ad2101d04841cc99b5315a99c272 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Depth bias (also called polygon offset) parameters.
/// </summary>
struct DepthBiasState
{
public Boolean32 PointEnable;
public Boolean32 LineEnable;
public Boolean32 FillEnable;
}
}
|