mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-28 16:37:13 +02:00
12 lines
480 B
C#
12 lines
480 B
C#
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|
{
|
|
struct EndHostConditionalRenderingCommand : IGALCommand, IGALCommand<EndHostConditionalRenderingCommand>
|
|
{
|
|
public readonly CommandType CommandType => CommandType.EndHostConditionalRendering;
|
|
|
|
public static void Run(ref EndHostConditionalRenderingCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
renderer.Pipeline.EndHostConditionalRendering();
|
|
}
|
|
}
|
|
}
|