aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/SetScissorsCommand.cs
blob: 6966df6d587ca2ab4fe535d739bdf0936b857b21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using Ryujinx.Graphics.GAL.Multithreading.Model;

namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
    struct SetScissorsCommand : IGALCommand
    {
        public CommandType CommandType => CommandType.SetScissor;
        private SpanRef<Rectangle<int>> _scissors;

        public void Set(SpanRef<Rectangle<int>> scissors)
        {
            _scissors = scissors;
        }

        public static void Run(ref SetScissorsCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            renderer.Pipeline.SetScissors(command._scissors.Get(threaded));

            command._scissors.Dispose(threaded);
        }
    }
}