( select, id )
| 186 | } |
| 187 | |
| 188 | function changeOperation( select, id ) { |
| 189 | |
| 190 | var step = texture.getStepById( id ); |
| 191 | |
| 192 | if ( step.value !== null ) { |
| 193 | |
| 194 | step.value.operation = select.value; |
| 195 | texture.render(); |
| 196 | |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | function generateOperationSelect(id, operation) { |
| 201 |
nothing calls this directly
no outgoing calls
no test coverage detected