(index, mask)
| 138687 | function Bitmap(w, h) { |
| 138688 | const array = new Uint32Array(~~((w * h + SIZE) / SIZE)); |
| 138689 | function _set(index, mask) { |
| 138690 | array[index] |= mask; |
| 138691 | } |
| 138692 | function _clear(index, mask) { |
| 138693 | array[index] &= mask; |
| 138694 | } |