aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/SetDepthModeCommand.cs
blob: 28c36be8bc8f0c874c85c021c4ceb73d60d17601 (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 SetDepthModeCommand : IGALCommand
    {
        public CommandType CommandType => CommandType.SetDepthMode;
        private DepthMode _mode;

        public void Set(DepthMode mode)
        {
            _mode = mode;
        }

        public static void Run(ref SetDepthModeCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            renderer.Pipeline.SetDepthMode(command._mode);
        }
    }
}