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.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Ryujinx.Graphics.Shader/Translation/AggregateType.cs b/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
deleted file mode 100644
index 24993e00..00000000
--- a/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-namespace Ryujinx.Graphics.Shader.Translation
-{
- enum AggregateType
- {
- Invalid,
- Void,
- Bool,
- FP32,
- FP64,
- S32,
- U32,
-
- ElementTypeMask = 0xff,
-
- ElementCountShift = 8,
- ElementCountMask = 3 << ElementCountShift,
-
- Scalar = 0 << ElementCountShift,
- Vector2 = 1 << ElementCountShift,
- Vector3 = 2 << ElementCountShift,
- Vector4 = 3 << ElementCountShift,
-
- Array = 1 << 10
- }
-}