Ryujinx/Ryujinx.Graphics.Gpu/State/RtDepthStencilState.cs
2020-11-05 23:50:34 +01:00

16 lines
387 B
C#

namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Render target depth-stencil buffer state.
/// </summary>
struct RtDepthStencilState
{
#pragma warning disable CS0649
public GpuVa Address;
public ZetaFormat Format;
public MemoryLayout MemoryLayout;
public int LayerSize;
#pragma warning restore CS0649
}
}