mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-06 20:36:26 +02:00
12 lines
298 B
C#
12 lines
298 B
C#
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|
{
|
|
interface IGALCommand
|
|
{
|
|
CommandType CommandType { get; }
|
|
}
|
|
|
|
interface IGALCommand<T> where T : IGALCommand
|
|
{
|
|
abstract static void Run(ref T command, ThreadedRenderer threaded, IRenderer renderer);
|
|
}
|
|
}
|