aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs
blob: d67cfc6924873a7afa0a270a068f65e4b1b22a26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using Ryujinx.Common.Memory;
using System;

namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
    struct SetPatchParametersCommand : IGALCommand
    {
        public CommandType CommandType => CommandType.SetPatchParameters;
        private int _vertices;
        private Array4<float> _defaultOuterLevel;
        private Array2<float> _defaultInnerLevel;

        public void Set(int vertices, ReadOnlySpan<float> defaultOuterLevel, ReadOnlySpan<float> defaultInnerLevel)
        {
            _vertices = vertices;
            defaultOuterLevel.CopyTo(_defaultOuterLevel.AsSpan());
            defaultInnerLevel.CopyTo(_defaultInnerLevel.AsSpan());
        }

        public static void Run(ref SetPatchParametersCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            renderer.Pipeline.SetPatchParameters(command._vertices, command._defaultOuterLevel.AsSpan(), command._defaultInnerLevel.AsSpan());
        }
    }
}