DepthBiasState.cs 350 B

1234567891011121314
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. /// <summary>
  4. /// Depth bias (also called polygon offset) parameters.
  5. /// </summary>
  6. struct DepthBiasState
  7. {
  8. #pragma warning disable CS0649
  9. public Boolean32 PointEnable;
  10. public Boolean32 LineEnable;
  11. public Boolean32 FillEnable;
  12. #pragma warning restore CS0649
  13. }
  14. }