| 10499 | } |
| 10500 | |
| 10501 | void |
| 10502 | Node::forceRefreshAllInputRelatedData() |
| 10503 | { |
| 10504 | markInputRelatedDataDirtyRecursive(); |
| 10505 | |
| 10506 | NodeGroup* isGroup = dynamic_cast<NodeGroup*>( _imp->effect.get() ); |
| 10507 | if (isGroup) { |
| 10508 | NodesList inputs; |
| 10509 | isGroup->getInputsOutputs(&inputs, false); |
| 10510 | for (NodesList::iterator it = inputs.begin(); it != inputs.end(); ++it) { |
| 10511 | if ( (*it) ) { |
| 10512 | (*it)->refreshInputRelatedDataRecursive(); |
| 10513 | } |
| 10514 | } |
| 10515 | } else { |
| 10516 | refreshInputRelatedDataRecursive(); |
| 10517 | } |
| 10518 | } |
| 10519 | |
| 10520 | void |
| 10521 | Node::markAllInputRelatedDataDirty() |
no test coverage detected