blob: e0edd9ab9a08b9e442d5d697dc3961e4d459b0fa (
plain) (
tree)
|
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
struct EndHostConditionalRenderingCommand : IGALCommand
{
public CommandType CommandType => CommandType.EndHostConditionalRendering;
public static void Run(IRenderer renderer)
{
renderer.Pipeline.EndHostConditionalRendering();
}
}
}
|