mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-15 11:58:16 -06: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
|
||
|
}
|
||
|
}
|