| 6226 | } |
| 6227 | |
| 6228 | void |
| 6229 | Node::forceRefreshAllInputRelatedData() |
| 6230 | { |
| 6231 | markInputRelatedDataDirtyRecursive(); |
| 6232 | |
| 6233 | NodeGroup* isGroup = dynamic_cast<NodeGroup*>( _imp->effect.get() ); |
| 6234 | if (isGroup) { |
| 6235 | NodesList inputs; |
| 6236 | isGroup->getInputsOutputs(&inputs, false); |
| 6237 | for (NodesList::iterator it = inputs.begin(); it != inputs.end(); ++it) { |
| 6238 | if ( (*it) ) { |
| 6239 | (*it)->refreshInputRelatedDataRecursive(); |
| 6240 | } |
| 6241 | } |
| 6242 | } else { |
| 6243 | refreshInputRelatedDataRecursive(); |
| 6244 | } |
| 6245 | } |
| 6246 | |
| 6247 | void |
| 6248 | Node::markAllInputRelatedDataDirty() |
no test coverage detected