| 4368 | } |
| 4369 | |
| 4370 | int |
| 4371 | Node::isMaskChannelKnob(const KnobI* knob) const |
| 4372 | { |
| 4373 | for (std::map<int, MaskSelector >::const_iterator it = _imp->maskSelectors.begin(); it != _imp->maskSelectors.end(); ++it) { |
| 4374 | if (it->second.channel.lock().get() == knob) { |
| 4375 | return it->first; |
| 4376 | } |
| 4377 | } |
| 4378 | |
| 4379 | return -1; |
| 4380 | } |
| 4381 | |
| 4382 | bool |
| 4383 | Node::isMaskEnabled(int inputNb) const |
no test coverage detected