| 8229 | } // Node::onInputChanged |
| 8230 | |
| 8231 | void |
| 8232 | Node::onParentMultiInstanceInputChanged(int input) |
| 8233 | { |
| 8234 | ++_imp->inputModifiedRecursion; |
| 8235 | _imp->effect->onInputChanged(input); |
| 8236 | --_imp->inputModifiedRecursion; |
| 8237 | } |
| 8238 | |
| 8239 | bool |
| 8240 | Node::duringInputChangedAction() const |
nothing calls this directly
no test coverage detected