mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 17:48:32 +00:00
7fea26e97e
* Introduce new IGALCommand<T> interface and use it * Remove use of reflection on GAL multithreading * Unmanaged constraint
26 lines
997 B
C#
26 lines
997 B
C#
using Ryujinx.Common.Memory;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|
{
|
|
struct SetPatchParametersCommand : IGALCommand, IGALCommand<SetPatchParametersCommand>
|
|
{
|
|
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());
|
|
}
|
|
}
|
|
}
|