InstEmitVideo.cs 444 B

1234567891011121314151617
  1. using Ryujinx.Graphics.Shader.Decoders;
  2. using Ryujinx.Graphics.Shader.Translation;
  3. using static Ryujinx.Graphics.Shader.Instructions.InstEmitHelper;
  4. namespace Ryujinx.Graphics.Shader.Instructions
  5. {
  6. static partial class InstEmit
  7. {
  8. public static void Vmad(EmitterContext context)
  9. {
  10. OpCodeVideo op = (OpCodeVideo)context.CurrOp;
  11. context.Copy(GetDest(context), GetSrcC(context));
  12. }
  13. }
  14. }