Renders a CSD, which may be given as a filename in the * WASM filesystem or a string containing the code. This is used for * disk rendering only. * @param {string} csd A string containing the CSD filename or the CSD code. * @memberof CsoundMixin
(csd)
| 325 | */ |
| 326 | |
| 327 | render(csd) { |
| 328 | CSOUND.compileCSD(this.csound, csd); |
| 329 | CSOUND.render(this.csound); |
| 330 | }, |
| 331 | |
| 332 | /** Evaluates Csound orchestra code. |
| 333 | * |
nothing calls this directly
no test coverage detected