aboutsummaryrefslogblamecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/SetBlendStateCommand.cs
blob: 6cc4894e72112f020bf9d638f7699df9b08cb3b0 (plain) (tree)


















                                                                                                               
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
    struct SetBlendStateCommand : IGALCommand
    {
        public CommandType CommandType => CommandType.SetBlendState;
        private int _index;
        private BlendDescriptor _blend;

        public void Set(int index, BlendDescriptor blend)
        {
            _index = index;
            _blend = blend;
        }

        public static void Run(ref SetBlendStateCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            renderer.Pipeline.SetBlendState(command._index, command._blend);
        }
    }
}