mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 07:18:39 +00:00
12 lines
239 B
C#
12 lines
239 B
C#
|
using System;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Gpu.State
|
||
|
{
|
||
|
[Flags]
|
||
|
enum ViewVolumeClipControl
|
||
|
{
|
||
|
ForceDepthRangeZeroToOne = 1 << 0,
|
||
|
DepthClampNear = 1 << 3,
|
||
|
DepthClampFar = 1 << 4,
|
||
|
}
|
||
|
}
|