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