| 397 | } |
| 398 | |
| 399 | bool |
| 400 | Node::isInputOnlyAlpha(int inputNb) const |
| 401 | { |
| 402 | assert(_imp->inputsInitialized); |
| 403 | |
| 404 | const std::list<ImagePlaneDesc>& inputSupportedComps = _imp->inputsComponents[inputNb]; |
| 405 | return (inputSupportedComps.size() == 1 && inputSupportedComps.front().getNumComponents() == 1); |
| 406 | } |
| 407 | |
| 408 | int |
| 409 | Node::getNInputs() const |
no test coverage detected