diff options
Diffstat (limited to 'Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs')
| -rw-r--r-- | Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs b/Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs deleted file mode 100644 index 50032635..00000000 --- a/Ryujinx.Graphics.GAL/Multithreading/Commands/BeginTransformFeedbackCommand.cs +++ /dev/null @@ -1,18 +0,0 @@ -namespace Ryujinx.Graphics.GAL.Multithreading.Commands -{ - struct BeginTransformFeedbackCommand : IGALCommand, IGALCommand<BeginTransformFeedbackCommand> - { - public CommandType CommandType => CommandType.BeginTransformFeedback; - private PrimitiveTopology _topology; - - public void Set(PrimitiveTopology topology) - { - _topology = topology; - } - - public static void Run(ref BeginTransformFeedbackCommand command, ThreadedRenderer threaded, IRenderer renderer) - { - renderer.Pipeline.BeginTransformFeedback(command._topology); - } - } -} |
