mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-02 15:37:16 +00:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs
Normal file
14
src/Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Graphics.Shader.Translation
|
||||
{
|
||||
[Flags]
|
||||
public enum TranslationFlags
|
||||
{
|
||||
None = 0,
|
||||
|
||||
VertexA = 1 << 0,
|
||||
Compute = 1 << 1,
|
||||
DebugMode = 1 << 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user