mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-08-02 03:41:56 +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,
|
|
}
|
|
} |