aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs
blob: 6dbe4b7befb7a96df4b6561cfb17b8e5f5105686 (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, IGALCommand<SetPatchParametersCommand>
    {
        public readonly 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());
        }
    }
}