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