aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPolygonModeCommand.cs
blob: caa362c06d9cc3fd825bf2a9e37819e37bbb25bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
    struct SetPolygonModeCommand : IGALCommand, IGALCommand<SetPolygonModeCommand>
    {
        public readonly CommandType CommandType => CommandType.SetPolygonMode;
        private PolygonMode _frontMode;
        private PolygonMode _backMode;

        public void Set(PolygonMode frontMode, PolygonMode backMode)
        {
            _frontMode = frontMode;
            _backMode = backMode;
        }

        public static void Run(ref SetPolygonModeCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            renderer.Pipeline.SetPolygonMode(command._frontMode, command._backMode);
        }
    }
}