mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-27 19:17:43 +02:00
17 lines
No EOL
444 B
C#
17 lines
No EOL
444 B
C#
using Ryujinx.Graphics.Shader.Decoders;
|
|
using Ryujinx.Graphics.Shader.Translation;
|
|
|
|
using static Ryujinx.Graphics.Shader.Instructions.InstEmitHelper;
|
|
|
|
namespace Ryujinx.Graphics.Shader.Instructions
|
|
{
|
|
static partial class InstEmit
|
|
{
|
|
public static void Vmad(EmitterContext context)
|
|
{
|
|
OpCodeVideo op = (OpCodeVideo)context.CurrOp;
|
|
|
|
context.Copy(GetDest(context), GetSrcC(context));
|
|
}
|
|
}
|
|
} |