IGALCommand.cs 301 B

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