aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs')
-rw-r--r--Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs
deleted file mode 100644
index 815bc3c2..00000000
--- a/Ryujinx.Graphics.GAL/Multithreading/Commands/SetPatchParametersCommand.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-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());
- }
- }
-}