InstEmitVideoArithmetic.cs 491 B

123456789101112131415161718
  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. InstVmad op = context.GetOp<InstVmad>();
  11. // TODO: Implement properly.
  12. context.Copy(GetDest(op.Dest), GetSrcReg(context, op.SrcC));
  13. }
  14. }
  15. }