0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-12-25 01:05:44 +00:00
ryujinx-fork/Ryujinx.Graphics.Gpu/State/ViewVolumeClipControl.cs

12 lines
239 B
C#
Raw Normal View History

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