()
| 26 | begin(x, y, width, height, dictionary) { return native("xs_colorcell_begin").call(this, x, y, width, height, dictionary); } |
| 27 | send(pixels, offsetIn, count) { return native("xs_colorcell_send").call(this, pixels, offsetIn, count); } |
| 28 | end() { return native("xs_colorcell_end").call(this); } |
| 29 | pixelsToBytes(count) { |
| 30 | return count * 2; // assumes 16-bit pixels |
| 31 | } |