blob: 4e12c42443d2561d285424028aadad806a9d4898 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
namespace Ryujinx.Graphics.Gpu.State
{
[Flags]
enum ViewVolumeClipControl
{
ForceDepthRangeZeroToOne = 1 << 0,
DepthClampNear = 1 << 3,
DepthClampFar = 1 << 4,
}
}
|