2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 17:32:06 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Render target depth-stencil buffer state.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
struct RtDepthStencilState
|
|
|
|
{
|
|
|
|
public GpuVa Address;
|
|
|
|
public RtFormat Format;
|
|
|
|
public MemoryLayout MemoryLayout;
|
|
|
|
public int LayerSize;
|
|
|
|
}
|
|
|
|
}
|