aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Shader/Translation/AggregateType.cs')
-rw-r--r--Ryujinx.Graphics.Shader/Translation/AggregateType.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Translation/AggregateType.cs b/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
new file mode 100644
index 00000000..dcd1e0bd
--- /dev/null
+++ b/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
@@ -0,0 +1,18 @@
+namespace Ryujinx.Graphics.Shader.Translation
+{
+ enum AggregateType
+ {
+ Invalid,
+ Void,
+ Bool,
+ FP32,
+ FP64,
+ S32,
+ U32,
+
+ ElementTypeMask = 0xff,
+
+ Vector = 1 << 8,
+ Array = 1 << 9
+ }
+}