blob: 1cae4109c1f2937f442197aad309d252b2101439 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
struct TextureBarrierTiledCommand : IGALCommand, IGALCommand<TextureBarrierTiledCommand>
{
public readonly CommandType CommandType => CommandType.TextureBarrierTiled;
public static void Run(ref TextureBarrierTiledCommand command, ThreadedRenderer threaded, IRenderer renderer)
{
renderer.Pipeline.TextureBarrierTiled();
}
}
}
|