mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:48:31 +00:00
7fea26e97e
* Introduce new IGALCommand<T> interface and use it * Remove use of reflection on GAL multithreading * Unmanaged constraint
24 lines
844 B
C#
24 lines
844 B
C#
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|
{
|
|
struct SetRenderTargetColorMasksCommand : IGALCommand, IGALCommand<SetRenderTargetColorMasksCommand>
|
|
{
|
|
public CommandType CommandType => CommandType.SetRenderTargetColorMasks;
|
|
private SpanRef<uint> _componentMask;
|
|
|
|
public void Set(SpanRef<uint> componentMask)
|
|
{
|
|
_componentMask = componentMask;
|
|
}
|
|
|
|
public static void Run(ref SetRenderTargetColorMasksCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
ReadOnlySpan<uint> componentMask = command._componentMask.Get(threaded);
|
|
renderer.Pipeline.SetRenderTargetColorMasks(componentMask);
|
|
command._componentMask.Dispose(threaded);
|
|
}
|
|
}
|
|
}
|