(x, y, width, height)
| 51 | this.key = dictionary.key; |
| 52 | } |
| 53 | begin(x, y, width, height) { |
| 54 | this.buffers = []; |
| 55 | this.output = undefined; |
| 56 | this.windowWidth = width; |
| 57 | this.windowHeight = height; |
| 58 | this.scratch = new Uint8Array(this.pixelsToBytes(width) + width); |
| 59 | } |
| 60 | send(pixels, offsetIn = 0, count = pixels.byteLength - offsetIn) { |
| 61 | let width = this.windowWidth; |
| 62 | let mask = new Uint8Array(this.pixelsToBytes(width)) |
nothing calls this directly
no test coverage detected