Modifies global pipeline options by successively applying all pipeline elements to it. Returns the final version of the pipeline options. @param p_rOptions Global pipeline options to modify.
| 241 | // @param p_rOptions Global pipeline options to modify. |
| 242 | // |
| 243 | void Pipeline::ModifyOptions(PipelineOptions& p_rOptions) const |
| 244 | { |
| 245 | for (const auto& spElement : m_vspElements) { |
| 246 | spElement->ModifyOptions(p_rOptions); |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | // |
| 251 | // Checks if a plugin using this pipeline should be enabled or not. |
no outgoing calls
no test coverage detected