WebGL (Web Graphics Library) is a specification that browsers implement, allowing you to interact with your graphics card from the browser without using plugins.
It is important to note that WebGL is neither software nor hardware. Instead, it is a standard that browsers like Chrome, Firefox, and Safari implement. When you use WebGL in JavaScript, the browser interprets it and communicates with the graphics card on your behalf.
The WebGL specification is based on OpenGL ES (OpenGL for Embedded Systems), which is a version of OpenGL made for devices with limited resources, such as mobile phones, tablets, and other embedded systems. Specifically:
Like WebGL, OpenGL is also a specification.
Since WebGL is tied to OpenGL, let’s explore OpenGL and how it fits into the bigger picture. OpenGL (Open Graphics Library) is another specification for interacting with graphics cards, used in desktop and mobile applications. It’s been around for decades, and it is used for the creation of games, simulations and more. There are other graphics APIs similar to OpenGL, including:
If you were building a 3D graphics application in a desktop environment, you might choose OpenGL, Direct3D, Vulkan, or Metal, depending on the platform and your needs. WebGL, on the other hand, is designed specifically for the web, running inside a browser.
Here’s where WebGL and OpenGL differ in how they work under the hood:
flowchart TD subgraph A[Browser] A1[WebGL] end subgraph B[Operating System] B1[Graphics Drivers] end C[Graphics Hardware] A -->|OpenGL / Vulkan / Metal / DirectX| B B --> C
Figure 1: Diagram illustrating the interaction between WebGL, the operating system and hardware.
So, with WebGL, the browser acts as a middleman: it takes your WebGL commands, converts them into the appropriate calls for the system’s graphics API (like OpenGL or Direct3D), and the drivers handle the rest. In contrast, a desktop OpenGL application skips the browser and talks straight to the drivers.
Here’s a concise summary of how WebGL works: