| 50 | { |
| 51 | |
| 52 | static boost::python::list uniformParameterNames( const Shader &s ) |
| 53 | { |
| 54 | vector<string> n; |
| 55 | s.uniformParameterNames( n ); |
| 56 | boost::python::list result; |
| 57 | for( unsigned int i=0; i<n.size(); i++ ) |
| 58 | { |
| 59 | result.append( n[i] ); |
| 60 | } |
| 61 | return result; |
| 62 | } |
| 63 | |
| 64 | static object parameterToObject( const Shader::Parameter *p ) |
| 65 | { |
nothing calls this directly
no test coverage detected