aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs
index 5fb04c80..ea831c8d 100644
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs
+++ b/Ryujinx.Graphics.GAL/Multithreading/Commands/IGALCommand.cs
@@ -4,4 +4,9 @@
{
CommandType CommandType { get; }
}
+
+ interface IGALCommand<T> where T : IGALCommand
+ {
+ abstract static void Run(ref T command, ThreadedRenderer threaded, IRenderer renderer);
+ }
}