ViewVolumeClipControl.cs 239 B

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