mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 19:00:47 -07:00
Remove use of reflection on GAL multithreading (#4287)
* Introduce new IGALCommand<T> interface and use it * Remove use of reflection on GAL multithreading * Unmanaged constraint
This commit is contained in:
@ -4,4 +4,9 @@
|
||||
{
|
||||
CommandType CommandType { get; }
|
||||
}
|
||||
|
||||
interface IGALCommand<T> where T : IGALCommand
|
||||
{
|
||||
abstract static void Run(ref T command, ThreadedRenderer threaded, IRenderer renderer);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user