InstEmitNop.cs 336 B

123456789101112131415
  1. using Ryujinx.Graphics.Shader.Decoders;
  2. using Ryujinx.Graphics.Shader.Translation;
  3. namespace Ryujinx.Graphics.Shader.Instructions
  4. {
  5. static partial class InstEmit
  6. {
  7. public static void Nop(EmitterContext context)
  8. {
  9. InstNop op = context.GetOp<InstNop>();
  10. // No operation.
  11. }
  12. }
  13. }