a7109c767b
* Rewrite shader decoding stage * Fix P2R constant buffer encoding * Fix PSET/PSETP * PR feedback * Log unimplemented shader instructions * Implement NOP * Remove using * PR feedback
15 lines
No EOL
336 B
C#
15 lines
No EOL
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.
|
|
}
|
|
}
|
|
} |