mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 21:18:34 +00:00
15 lines
336 B
C#
15 lines
336 B
C#
|
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.
|
||
|
}
|
||
|
}
|
||
|
}
|