diff options
Diffstat (limited to 'Ryujinx.Graphics/Shader/StructuredIr/VariableType.cs')
| -rw-r--r-- | Ryujinx.Graphics/Shader/StructuredIr/VariableType.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Ryujinx.Graphics/Shader/StructuredIr/VariableType.cs b/Ryujinx.Graphics/Shader/StructuredIr/VariableType.cs new file mode 100644 index 00000000..4c7f3849 --- /dev/null +++ b/Ryujinx.Graphics/Shader/StructuredIr/VariableType.cs @@ -0,0 +1,13 @@ +namespace Ryujinx.Graphics.Shader.StructuredIr +{ + enum VariableType + { + None, + Bool, + Scalar, + Int, + F32, + S32, + U32 + } +}
\ No newline at end of file |
