mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 01:29:48 -06:00
Initial work
This commit is contained in:
11
Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs
Normal file
11
Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace Ryujinx.Graphics.Shader.Translation
|
||||
{
|
||||
public enum TranslationFlags
|
||||
{
|
||||
None = 0,
|
||||
|
||||
Compute = 1 << 0,
|
||||
DebugMode = 1 << 1,
|
||||
Unspecialized = 1 << 2
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user