blob: 5ad8adfa52075ca50b71fd1c47cff0f72154509c (
plain) (
tree)
|
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
struct TextureBarrierCommand : IGALCommand, IGALCommand<TextureBarrierCommand>
{
public readonly CommandType CommandType => CommandType.TextureBarrier;
public static void Run(ref TextureBarrierCommand command, ThreadedRenderer threaded, IRenderer renderer)
{
renderer.Pipeline.TextureBarrier();
}
}
}
|