docs.rodeo

MDN Web Docs mirror

WebGL: 2D and 3D graphics for the web

{{DefaultAPISidebar("WebGL")}} {{AvailableInWorkers}} 

WebGL (Web Graphics Library) is a JavaScript API for rendering high-performance interactive 3D and 2D graphics within any compatible web browser without the use of plug-ins. WebGL does so by introducing an API that closely conforms to OpenGL ES 2.0 that can be used in HTML {{HTMLElement("canvas")}}  elements. This conformance makes it possible for the API to take advantage of hardware graphics acceleration provided by the user’s device.

Support for WebGL is present in all modern browsers (see the compatibility tables below); however, the user’s device must also have hardware that supports these features.

The WebGL 2 API introduces support for much of the OpenGL ES 3.0 feature set; it’s provided through the {{domxref("WebGL2RenderingContext")}}  interface.

The {{HTMLElement("canvas")}}  element is also used by the Canvas API to do 2D graphics on web pages.

Reference

Standard interfaces

Extensions

Events

Constants and types

WebGL 2

WebGL 2 is a major update to WebGL which is provided through the {{domxref("WebGL2RenderingContext")}}  interface. It is based on OpenGL ES 3.0 and new features include:

See also the blog post “WebGL 2 lands in Firefox” and webglsamples.org/WebGL2Samples for a few demos.

Guides and tutorials

Below, you’ll find an assortment of guides to help you learn WebGL concepts and tutorials that offer step-by-step lessons and examples.

Guides

Tutorials

Examples

Advanced tutorials

Resources

Libraries

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

Compatibility notes

In addition to the browser, the GPU itself also needs to support the feature. So, for example, S3 Texture Compression (S3TC) is only available on Tegra-based tablets. Most browsers make the WebGL context available through the webgl context name, but older ones need experimental-webgl as well. In addition, the upcoming WebGL 2 is fully backwards-compatible and will have the context name webgl2.

Gecko notes

WebGL debugging and testing

Firefox provides two preferences available which let you control the capabilities of WebGL for testing purposes:

See also

In this article

View on MDN