mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:58:44 +00:00
16 lines
387 B
C#
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
|
|
}
|
|
}
|