aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/ViewVolumeClipControl.cs
blob: ace8342ce115cc5d963169b27f5330514004345d (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

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