mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 09:00:44 +00:00
Fix copy-paste error of shader output values in wrong places in history
This commit is contained in:
@@ -310,7 +310,7 @@ public:
|
||||
if(isEvent(index))
|
||||
return tr("Tex After\n\n") + modString(getMods(index).last().postMod);
|
||||
else
|
||||
return tr("Tex After\n\n") + modString(getMod(index).shaderOut);
|
||||
return tr("Tex After\n\n") + modString(getMod(index).postMod);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -322,7 +322,7 @@ public:
|
||||
if(isEvent(index))
|
||||
return backgroundBrush(getMods(index).first().preMod);
|
||||
else
|
||||
return backgroundBrush(getMod(index).shaderOut);
|
||||
return backgroundBrush(getMod(index).preMod);
|
||||
}
|
||||
else if(col == 4)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user