mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
15 lines
364 B
C#
15 lines
364 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Renderer
|
|||
|
{
|
|||
|
struct PreFrameCommand : IGALCommand
|
|||
|
{
|
|||
|
public CommandType CommandType => CommandType.PreFrame;
|
|||
|
|
|||
|
public static void Run(ref PreFrameCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|||
|
{
|
|||
|
renderer.PreFrame();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|