notes
-
WebGl
WebGL only cares about 2 things. Clip space coordinates and colors. Your job as a programmer using WebGL is to provide WebGL with those 2 things. You provide your 2 “shaders” to do this. A Vertex shader which provides the clip space coordinates, and a fragment shader that provides the color.
19th June, 2026
-
Web workers
Some useful links regarding using web workers within a JS library
Optimizing performance with web workers
JS libraries exposing off the main thread API
19th May, 2026