Ryujinx/Ryujinx.Graphics.Gpu/State/ViewVolumeClipControl.cs
mageven 4960ab85f8
Implement Depth Clamping (#1120)
* Implement Depth Clamping and add misc enums

* Fix formatting
2020-04-17 11:16:49 +10:00

12 lines
No EOL
239 B
C#

using System;
namespace Ryujinx.Graphics.Gpu.State
{
[Flags]
enum ViewVolumeClipControl
{
ForceDepthRangeZeroToOne = 1 << 0,
DepthClampNear = 1 << 3,
DepthClampFar = 1 << 4,
}
}