2020-01-06 22:27:50 +00:00
|
|
|
using System;
|
|
|
|
|
2019-10-13 06:02:07 +00:00
|
|
|
namespace Ryujinx.Graphics.Shader.Translation
|
|
|
|
{
|
2020-01-06 22:27:50 +00:00
|
|
|
[Flags]
|
2019-10-13 06:02:07 +00:00
|
|
|
public enum TranslationFlags
|
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
|
2020-05-27 23:03:07 +00:00
|
|
|
VertexA = 1 << 0,
|
|
|
|
Compute = 1 << 1,
|
|
|
|
DebugMode = 1 << 2
|
2019-10-13 06:02:07 +00:00
|
|
|
}
|
|
|
|
}
|