blob: e0edd9ab9a08b9e442d5d697dc3961e4d459b0fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
struct EndHostConditionalRenderingCommand : IGALCommand
{
public CommandType CommandType => CommandType.EndHostConditionalRendering;
public static void Run(IRenderer renderer)
{
renderer.Pipeline.EndHostConditionalRendering();
}
}
}
|