RtDepthStencilState.cs 238 B

12345678910
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. struct RtDepthStencilState
  4. {
  5. public GpuVa Address;
  6. public RtFormat Format;
  7. public MemoryLayout MemoryLayout;
  8. public int LayerSize;
  9. }
  10. }