Last active
January 2, 2021 14:58
-
-
Save Jagathishrex/1a2fceeae000f291494535a3ecce0c77 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const canvas = document.querySelector('#canvas'); | |
const offscreenCanvas = canvas.transferControlToOffscreen(); | |
const worker = new Worker('offscreen_worker.js'); | |
worker.postMessage({msg: 'offscreen', canvas: offscreenCanvas}, [offscreenCanvas]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment