| 5416 | } |
| 5417 | |
| 5418 | bool |
| 5419 | Node::isInputOnlyAlpha(int inputNb) const |
| 5420 | { |
| 5421 | assert(_imp->inputsInitialized); |
| 5422 | |
| 5423 | const std::list<ImagePlaneDesc>& inputSupportedComps = _imp->inputsComponents[inputNb]; |
| 5424 | return (inputSupportedComps.size() == 1 && inputSupportedComps.front().getNumComponents() == 1); |
| 5425 | } |
| 5426 | |
| 5427 | bool |
| 5428 | Node::isInputConnected(int inputNb) const |
no test coverage detected