| 1055 | } |
| 1056 | |
| 1057 | void |
| 1058 | ReadNode::addSupportedBitDepth(std::list<ImageBitDepthEnum>* depths) const |
| 1059 | { |
| 1060 | NodePtr p = getEmbeddedReader(); |
| 1061 | if (p) { |
| 1062 | p->getEffectInstance()->addSupportedBitDepth(depths); |
| 1063 | } else { |
| 1064 | depths->push_back(eImageBitDepthFloat); |
| 1065 | } |
| 1066 | } |
| 1067 | |
| 1068 | void |
| 1069 | ReadNode::onInputChanged(int inputNo) |
no test coverage detected