| 632 | } |
| 633 | |
| 634 | std::string RenderGraph::getOutputName(size_t index) const |
| 635 | { |
| 636 | FALCOR_ASSERT(index < mOutputs.size()); |
| 637 | const GraphOut& graphOut = mOutputs[index]; |
| 638 | return mNodeData.find(graphOut.nodeId)->second.name + "." + graphOut.field; |
| 639 | } |
| 640 | |
| 641 | std::unordered_set<TextureChannelFlags> RenderGraph::getOutputMasks(size_t index) const |
| 642 | { |