shader_recompiler/EXIT: increment output register on failed enable test
This commit is contained in:
parent
cb86e7941b
commit
6fa17f3372
1 changed files with 1 additions and 0 deletions
|
@ -15,6 +15,7 @@ void ExitFragment(TranslatorVisitor& v) {
|
|||
const std::array<bool, 4> mask{sph.ps.EnabledOutputComponents(render_target)};
|
||||
for (u32 component = 0; component < 4; ++component) {
|
||||
if (!mask[component]) {
|
||||
++src_reg;
|
||||
continue;
|
||||
}
|
||||
v.ir.SetFragColor(render_target, component, v.F(src_reg));
|
||||
|
|
Loading…
Reference in a new issue