Skip to content

Instantly share code, notes, and snippets.

@JanVoracek
Created July 20, 2016 17:42
Show Gist options
  • Save JanVoracek/d3e155c5f6c2bc8e83fe4c725e4dd0b6 to your computer and use it in GitHub Desktop.
Save JanVoracek/d3e155c5f6c2bc8e83fe4c725e4dd0b6 to your computer and use it in GitHub Desktop.
// --- DOES NOT WORK
var repaint = function () {
wrappedPaint(buf.byteOffset, w, h);
imageData.data.set(buf);
ctx.putImageData(imageData, 0, 0);
window.requestAnimationFrame(repaint);
};
init();
repaint(true);
// --- WORKS
var repaint = function (isFirstCall) {
if (isFirstCall) {
init();
}
wrappedPaint(buf.byteOffset, w, h);
imageData.data.set(buf);
ctx.putImageData(imageData, 0, 0);
window.requestAnimationFrame(repaint);
};
repaint(true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment