aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/Multithreading/Commands/TextureBarrierCommand.cs
blob: ce1a83a78dac8049abfe76af9659ddeb9612f988 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
    struct TextureBarrierCommand : IGALCommand, IGALCommand<TextureBarrierCommand>
    {
        public CommandType CommandType => CommandType.TextureBarrier;

        public static void Run(ref TextureBarrierCommand command, ThreadedRenderer threaded, IRenderer renderer)
        {
            renderer.Pipeline.TextureBarrier();
        }
    }
}