Support CC on FSET shader instruction, fix CC on ISET.BF shader instruction

This commit is contained in:
gdkchan 2019-12-16 02:42:01 -03:00 committed by Thog
parent 9d7a142a48
commit 82957fa96b
3 changed files with 24 additions and 14 deletions

View file

@ -327,14 +327,18 @@ namespace Ryujinx.Graphics.Shader.Instructions
if (boolFloat)
{
context.Copy(dest, context.ConditionalSelect(res, ConstF(1), Const(0)));
res = context.ConditionalSelect(res, ConstF(1), Const(0));
context.Copy(dest, res);
SetFPZnFlags(context, res, op.SetCondCode);
}
else
{
context.Copy(dest, res);
}
SetZnFlags(context, res, op.SetCondCode, op.Extended);
SetZnFlags(context, res, op.SetCondCode, op.Extended);
}
// TODO: X
}