Ryujinx/Ryujinx.Graphics.Gpu/State/ViewVolumeClipControl.cs

11 lines
197 B
C#

using System;
namespace Ryujinx.Graphics.Gpu.State
{
[Flags]
enum ViewVolumeClipControl
{
ForceDepthRangeZeroToOne = 1 << 0,
DepthClampDisabled = 1 << 11,
}
}