mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-11 05:04:48 +00:00
Move solution and projects to src
This commit is contained in:
15
src/Ryujinx.Graphics.Shader/Instructions/InstEmitNop.cs
Normal file
15
src/Ryujinx.Graphics.Shader/Instructions/InstEmitNop.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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.
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user