aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Instructions/InstEmitVideo.cs
blob: aac12c781c5dfa5dc8b672563c9538b552169cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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));
        }
    }
}