| 117 | } |
| 118 | |
| 119 | boost::python::list outputConnections( const ShaderNetwork &network, const InternedString &handle ) |
| 120 | { |
| 121 | boost::python::list result; |
| 122 | for( const auto &c : network.outputConnections( handle ) ) |
| 123 | { |
| 124 | result.append( c ); |
| 125 | } |
| 126 | return result; |
| 127 | } |
| 128 | |
| 129 | ShaderPtr outputShader( const ShaderNetwork &network ) |
| 130 | { |
nothing calls this directly
no test coverage detected