aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.Graphics.GAL/Multithreading/Commands/EndHostConditionalRenderingCommand.cs
blob: 3f20c010544848c31bf33c77c3bd49f13558a2f2 (plain) (tree)
1
2
3
4
5
6
7
                                                      
 
                                                                                                            
     
                                                                                           
 
                                                                                                                             



                                                            
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();
        }
    }
}