mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 00:48:38 +00:00
10 lines
168 B
C#
10 lines
168 B
C#
namespace Ryujinx.Graphics.Shader.Translation
|
|
{
|
|
public enum TranslationFlags
|
|
{
|
|
None = 0,
|
|
|
|
Compute = 1 << 0,
|
|
DebugMode = 1 << 1
|
|
}
|
|
} |