IGALCommand.cs
1 namespace Ryujinx.Graphics.GAL.Multithreading.Commands 2 { 3 interface IGALCommand 4 { 5 CommandType CommandType { get; } 6 } 7 8 interface IGALCommand<T> where T : IGALCommand 9 { 10 abstract static void Run(ref T command, ThreadedRenderer threaded, IRenderer renderer); 11 } 12 }