* @brief Returns false if the tree has unconnected mandatory inputs **/
| 730 | * @brief Returns false if the tree has unconnected mandatory inputs |
| 731 | **/ |
| 732 | static bool |
| 733 | checkTreeCanRender(Node* node) |
| 734 | { |
| 735 | std::list<Node*> marked; |
| 736 | bool ret = checkTreeCanRender_internal(node, marked); |
| 737 | |
| 738 | return ret; |
| 739 | } |
| 740 | |
| 741 | static unsigned char* |
| 742 | getTexPixel(int x, |
no test coverage detected