mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 01:41:44 +00:00
Fix shader output color buffer index when non-sequential render targets are used (#895)
This commit is contained in:
parent
90b4759085
commit
81cca88bcd
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||
{
|
||||
if (target.ComponentEnabled(component))
|
||||
{
|
||||
Operand dest = Attribute(AttributeConsts.FragmentOutputColorBase + regIndex * 4);
|
||||
Operand dest = Attribute(AttributeConsts.FragmentOutputColorBase + attachment * 16 + component * 4);
|
||||
|
||||
Operand src = Register(regIndex, RegisterType.Gpr);
|
||||
|
||||
|
|
Loading…
Reference in a new issue