| 93 | } |
| 94 | |
| 95 | std::string RenderGraphIR::getFuncName(const std::string& graphName) |
| 96 | { |
| 97 | std::string name = "render_graph_" + graphName; |
| 98 | name = replaceCharacters(name, " /\\", '_'); |
| 99 | return name; |
| 100 | } |
| 101 | |
| 102 | } // namespace Falcor |
nothing calls this directly
no test coverage detected