| 377 | } |
| 378 | |
| 379 | bool RenderGraph::isGraphOutput(const GraphOut& graphOut) const |
| 380 | { |
| 381 | for (const GraphOut& currentOut : mOutputs) |
| 382 | { |
| 383 | if (graphOut == currentOut) |
| 384 | return true; |
| 385 | } |
| 386 | |
| 387 | return false; |
| 388 | } |
| 389 | |
| 390 | std::vector<std::string> RenderGraph::getAvailableOutputs() const |
| 391 | { |