mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-30 20:57:43 +02:00
11 lines
158 B
C#
11 lines
158 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
enum Condition
|
|
{
|
|
Never,
|
|
Always,
|
|
ResultNonZero,
|
|
Equal,
|
|
NotEqual
|
|
}
|
|
}
|