mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:38:36 +00:00
7fea26e97e
* Introduce new IGALCommand<T> interface and use it * Remove use of reflection on GAL multithreading * Unmanaged constraint
26 lines
899 B
C#
26 lines
899 B
C#
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|
{
|
|
struct SetViewportsCommand : IGALCommand, IGALCommand<SetViewportsCommand>
|
|
{
|
|
public CommandType CommandType => CommandType.SetViewports;
|
|
private SpanRef<Viewport> _viewports;
|
|
private bool _disableTransform;
|
|
|
|
public void Set(SpanRef<Viewport> viewports, bool disableTransform)
|
|
{
|
|
_viewports = viewports;
|
|
_disableTransform = disableTransform;
|
|
}
|
|
|
|
public static void Run(ref SetViewportsCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
ReadOnlySpan<Viewport> viewports = command._viewports.Get(threaded);
|
|
renderer.Pipeline.SetViewports(viewports, command._disableTransform);
|
|
command._viewports.Dispose(threaded);
|
|
}
|
|
}
|
|
}
|