mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 23:29:51 -06:00
13 lines
415 B
C#
13 lines
415 B
C#
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();
|
|
}
|
|
}
|
|
}
|