aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/SetStencilTestCommand.cs
blob: cc5db4df44d0bd0933ee27359a533fd86f6f0fd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
    struct SetStencilTestCommand : IGALCommand
    {
        public CommandType CommandType => CommandType.SetStencilTest;
        private StencilTestDescriptor _stencilTest;

        public void Set(StencilTestDescriptor stencilTest)
        {
            _stencilTest = stencilTest;
        }

        public static void Run(ref SetStencilTestCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            renderer.Pipeline.SetStencilTest(command._stencilTest);
        }
    }
}