The getContext() method now supports a desynchronized option, which provides a low-latency alternative to the now deprecated NaCl/PPAPI solution which used native OpenGL rendering. The new solution uses either 2d or webgl rendering. For example: `let context_type = '2dā; // Or 'webgl' canvas.getContext(context_type, {desynchronized: true});`
Docs: https://github.com/whatwg/html/issues/4087 https://tinyurl.com/lowlatency-canvas-on-chromeos
Samples: https://codepen.io/miguelao/full/WKZaqd https://codepen.io/miguelao/full/ZjJNNw https://codepen.io/miguelao/full/mLLKLg