mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 21:18:34 +00:00
c2ac45adc5
Verified with deko3d and opengl driver code.
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,
|
|
}
|
|
} |