Campari/src/State/DepthStencilState.cs

18 lines
476 B
C#
Raw Normal View History

2021-01-15 01:25:15 +00:00
using RefreshCS;
namespace Campari
{
public struct DepthStencilState
{
public bool DepthTestEnable;
public Refresh.StencilOpState BackStencilState;
public Refresh.StencilOpState FrontStencilState;
public Refresh.CompareOp CompareOp;
public bool DepthBoundsTestEnable;
public bool DepthWriteEnable;
public float MinDepthBounds;
public float MaxDepthBounds;
public bool StencilTestEnable;
}
}