| 502 | } |
| 503 | |
| 504 | void RenderGraphUI::removeOutput(const std::string& outputPass, const std::string& outputField) |
| 505 | { |
| 506 | std::string outputParam = outputPass + "." + outputField; |
| 507 | mpIr->unmarkOutput(outputParam); |
| 508 | auto& passUI = mRenderPassUI[outputPass]; |
| 509 | passUI.mOutputPins[passUI.mNameToIndexOutput[outputField]].mIsGraphOutput = false; |
| 510 | mShouldUpdate = true; |
| 511 | } |
| 512 | |
| 513 | bool RenderGraphUI::autoResolveWarning(const std::string& srcString, const std::string& dstString) |
| 514 | { |