blob: bfa812cb915799be0d48d87723a35923b730270e (
plain)
1
2
3
4
5
6
7
8
9
10
|
namespace Ryujinx.Graphics.Gpu.State
{
struct RtDepthStencilState
{
public GpuVa Address;
public RtFormat Format;
public MemoryLayout MemoryLayout;
public int LayerSize;
}
}
|