19 lines
574 B
C#
19 lines
574 B
C#
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|||
|
{
|
|||
|
struct BeginTransformFeedbackCommand : IGALCommand
|
|||
|
{
|
|||
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|