c2ac45adc5
Verified with deko3d and opengl driver code.
11 lines
No EOL
197 B
C#
11 lines
No EOL
197 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
[Flags]
|
|
enum ViewVolumeClipControl
|
|
{
|
|
ForceDepthRangeZeroToOne = 1 << 0,
|
|
DepthClampDisabled = 1 << 11,
|
|
}
|
|
} |