1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-15 11:58:16 -06:00

11 lines
208 B
C#
Raw Normal View History

2019-10-13 03:02:07 -03:00
namespace Ryujinx.Graphics.Shader.Translation
{
public enum TranslationFlags
{
None = 0,
Compute = 1 << 0,
DebugMode = 1 << 1,
Unspecialized = 1 << 2
}
}