* @param {Boolean} [flip] * @returns {Uint8ClampedArray}
(flip)
| 805 | * @returns {Uint8ClampedArray} |
| 806 | */ |
| 807 | getPixels(flip) { |
| 808 | throw new Error(`"getPixels" called on ${ this.constructor.name }`); |
| 809 | } |
| 810 | |
| 811 | checkOutput() { |
| 812 | if (!this.output || !utils.isArray(this.output)) throw new Error('kernel.output not an array'); |
no outgoing calls
no test coverage detected