MCPcopy Create free account
hub / github.com/NatronGitHub/Natron / hasAllInputsConnected

Method hasAllInputsConnected

Engine/NodeInputs.cpp:526–538  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

524}
525
526bool
527Node::hasAllInputsConnected() const
528{
529 QMutexLocker l(&_imp->inputsMutex);
530
531 for (U32 i = 0; i < _imp->inputs.size(); ++i) {
532 if ( !_imp->inputs[i].lock() ) {
533 return false;
534 }
535 }
536
537 return true;
538}
539
540bool
541Node::hasOutputConnected() const

Callers 1

checkForHintsMethod · 0.80

Calls 2

sizeMethod · 0.45
lockMethod · 0.45

Tested by

no test coverage detected