mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-29 08:07:43 +02:00
11 lines
No EOL
166 B
C#
11 lines
No EOL
166 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
[Flags]
|
|
enum YControl
|
|
{
|
|
NegateY = 1 << 0,
|
|
TriangleRastFlip = 1 << 4
|
|
}
|
|
} |