0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-12-23 19:05:46 +00:00
ryujinx-fork/Ryujinx.Graphics.Shader/Instructions/InstEmitNop.cs

15 lines
336 B
C#
Raw Normal View History

using Ryujinx.Graphics.Shader.Decoders;
using Ryujinx.Graphics.Shader.Translation;
namespace Ryujinx.Graphics.Shader.Instructions
{
static partial class InstEmit
{
public static void Nop(EmitterContext context)
{
InstNop op = context.GetOp<InstNop>();
// No operation.
}
}
}