What is WebGL? WebGL is derived from OpenGL. OpenGL is a programming interface residing in your graphics processing unit ("graphics card" or GPU) that allows a graphics programmer to write programs that create and manipulate graphics. Essentially, WebGL allows you to display 3D graphics on a 2D surface through a series of transformations called the graphics pipeline . This process is called rendering . Older graphics cards employed a fixed-function pipeline that was not programmable while today's GPUs employ a programmable pipeline. OpenGL is used in computer-aided design (CAD), virtual reality, scientific visualization, information visualization, flight simulation, and video games. It is maintained and developed by the non-profit technology consortium Khronos Group . WebGL is a version of OpenGL that runs in a web browser. WebGL is based on the OpenGL ES version of OpenGL that is targeted at embedded devices. In devices without OpenGL drivers, there is a wa...