| 1042 | } |
| 1043 | |
| 1044 | int GraphNode::get_input_port_count() { |
| 1045 | if (port_pos_dirty) { |
| 1046 | _port_pos_update(); |
| 1047 | } |
| 1048 | |
| 1049 | return left_port_cache.size(); |
| 1050 | } |
| 1051 | |
| 1052 | int GraphNode::get_output_port_count() { |
| 1053 | if (port_pos_dirty) { |
no test coverage detected