mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-07 15:12:34 -07:00
Implement Depth Clamping (#1120)
* Implement Depth Clamping and add misc enums * Fix formatting
This commit is contained in:
11
Ryujinx.Graphics.Gpu/State/YControl.cs
Normal file
11
Ryujinx.Graphics.Gpu/State/YControl.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Graphics.Gpu.State
|
||||
{
|
||||
[Flags]
|
||||
enum YControl
|
||||
{
|
||||
NegateY = 1 << 0,
|
||||
TriangleRastFlip = 1 << 4
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user