aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs')
-rw-r--r--Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs
deleted file mode 100644
index 53871a14..00000000
--- a/Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-namespace Ryujinx.Graphics.Gal.Shader
-{
- class ShaderIrAsg : ShaderIrNode
- {
- public ShaderIrNode Dst { get; set; }
- public ShaderIrNode Src { get; set; }
-
- public ShaderIrAsg(ShaderIrNode dst, ShaderIrNode src)
- {
- Dst = dst;
- Src = src;
- }
- }
-} \ No newline at end of file