mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-10 21:25:25 +00:00
11 lines
197 B
C#
11 lines
197 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
[Flags]
|
|
enum ViewVolumeClipControl
|
|
{
|
|
ForceDepthRangeZeroToOne = 1 << 0,
|
|
DepthClampDisabled = 1 << 11,
|
|
}
|
|
} |