13 lines
373 B
C#
13 lines
373 B
C#
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|||
|
{
|
|||
|
struct TextureBarrierCommand : IGALCommand
|
|||
|
{
|
|||
|
public CommandType CommandType => CommandType.TextureBarrier;
|
|||
|
|
|||
|
public static void Run(ref TextureBarrierCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|||
|
{
|
|||
|
renderer.Pipeline.TextureBarrier();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|