ViewVolumeClipControl.cs 197 B

1234567891011
  1. using System;
  2. namespace Ryujinx.Graphics.Gpu.State
  3. {
  4. [Flags]
  5. enum ViewVolumeClipControl
  6. {
  7. ForceDepthRangeZeroToOne = 1 << 0,
  8. DepthClampDisabled = 1 << 11,
  9. }
  10. }