MCPcopy Create free account
hub / github.com/microsoft/SandDance / _set

Function _set

docs/app/js/sanddance-app.js:138689–138691  ·  view source on GitHub ↗
(index, mask)

Source from the content-addressed store, hash-verified

138687function 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 }

Callers 1

BitmapFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected