/ src / Ryujinx.Graphics.GAL / DepthTestDescriptor.cs
DepthTestDescriptor.cs
 1  namespace Ryujinx.Graphics.GAL
 2  {
 3      public readonly struct DepthTestDescriptor
 4      {
 5          public bool TestEnable { get; }
 6          public bool WriteEnable { get; }
 7  
 8          public CompareOp Func { get; }
 9  
10          public DepthTestDescriptor(
11              bool testEnable,
12              bool writeEnable,
13              CompareOp func)
14          {
15              TestEnable = testEnable;
16              WriteEnable = writeEnable;
17              Func = func;
18          }
19      }
20  }