| 4380 | } |
| 4381 | |
| 4382 | bool |
| 4383 | Node::isMaskEnabled(int inputNb) const |
| 4384 | { |
| 4385 | std::map<int, MaskSelector >::const_iterator it = _imp->maskSelectors.find(inputNb); |
| 4386 | |
| 4387 | if ( it != _imp->maskSelectors.end() ) { |
| 4388 | return it->second.enabled.lock()->getValue(); |
| 4389 | } else { |
| 4390 | return true; |
| 4391 | } |
| 4392 | } |
| 4393 | |
| 4394 | void |
| 4395 | Node::lock(const ImagePtr & image) |
no test coverage detected