Overview


WebGL is an API for drawing computer graphics on the GPU in a web browser, usually used for browser-based 3D graphics.

The general process of creating a WebGL application involves writing vertex and fragment shaders, linking them into a shader program, and passing data into that program. While the shaders themselves are written in...