mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-21 18:21:13 +02: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
|
|
}
|
|
} |