| 510 | |
| 511 | |
| 512 | bool |
| 513 | Node::hasMandatoryInputDisconnected() const |
| 514 | { |
| 515 | QMutexLocker l(&_imp->inputsMutex); |
| 516 | |
| 517 | for (U32 i = 0; i < _imp->inputs.size(); ++i) { |
| 518 | if ( !_imp->inputs[i].lock() && !_imp->effect->isInputOptional(i) ) { |
| 519 | return true; |
| 520 | } |
| 521 | } |
| 522 | |
| 523 | return false; |
| 524 | } |
| 525 | |
| 526 | bool |
| 527 | Node::hasAllInputsConnected() const |
nothing calls this directly
no test coverage detected