2020-01-06 19:27:50 -03:00
|
|
|
using System;
|
|
|
|
|
2019-10-13 03:02:07 -03:00
|
|
|
namespace Ryujinx.Graphics.Shader.Translation
|
|
|
|
{
|
2020-01-06 19:27:50 -03:00
|
|
|
[Flags]
|
2019-10-13 03:02:07 -03:00
|
|
|
public enum TranslationFlags
|
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
|
2019-12-16 01:59:46 -03:00
|
|
|
Compute = 1 << 0,
|
|
|
|
DebugMode = 1 << 1
|
2019-10-13 03:02:07 -03:00
|
|
|
}
|
|
|
|
}
|