aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthTestCommand.cs
blob: 585d3e8b5263efa118ccc53df8adbd5982563de4 (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 SetDepthTestCommand : IGALCommand
    {
        public CommandType CommandType => CommandType.SetDepthTest;
        private DepthTestDescriptor _depthTest;

        public void Set(DepthTestDescriptor depthTest)
        {
            _depthTest = depthTest;
        }

        public static void Run(ref SetDepthTestCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            renderer.Pipeline.SetDepthTest(command._depthTest);
        }
    }
}