2019-10-13 09:02:07 +03:00
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
|
|
{
|
2019-12-31 19:32:06 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Render target depth-stencil buffer state.
|
|
|
|
/// </summary>
|
2019-10-13 09:02:07 +03:00
|
|
|
struct RtDepthStencilState
|
|
|
|
{
|
2020-04-21 00:59:59 +03:00
|
|
|
#pragma warning disable CS0649
|
2019-10-13 09:02:07 +03:00
|
|
|
public GpuVa Address;
|
2020-11-06 01:50:34 +03:00
|
|
|
public ZetaFormat Format;
|
2019-10-13 09:02:07 +03:00
|
|
|
public MemoryLayout MemoryLayout;
|
|
|
|
public int LayerSize;
|
2020-04-21 00:59:59 +03:00
|
|
|
#pragma warning restore CS0649
|
2019-10-13 09:02:07 +03:00
|
|
|
}
|
|
|
|
}
|