mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-06 10:18:30 +02:00
12 lines
158 B
C#
12 lines
158 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
enum Condition
|
|
{
|
|
Never,
|
|
Always,
|
|
ResultNonZero,
|
|
Equal,
|
|
NotEqual
|
|
}
|
|
}
|