WebGLRenderingContext

The WebGLRenderingContext interface provides an interface to the OpenGL ES 2.0 graphics rendering context for the drawing surface of an HTML <canvas> element.

To get an access to a WebGL context for 2D and/or 3D graphics rendering, call getContext() on a <canvas> element, supplying "webgl" as the argument:

var canvas = document.getElementById('myCanvas');
var gl = canvas.getContext('webgl');

Once you have the WebGL rendering context for a canvas, you can render within it. The WebGL tutorial has more information, examples, and resources on how to get started with WebGL.

If you require a WebGL 2.0 context, see WebGL2RenderingContext; this supplies access to an implementation of OpenGL ES 3.0 graphics.

Constants

See the WebGL constants page.

The WebGL context

The following properties and methods provide general information and functionality to deal with the WebGL context:

WebGLRenderingContext.canvas

A read-only back-reference to the HTMLCanvasElement. Might be null if it is not associated with a <canvas> element.

WebGLRenderingContext.commit()

Pushes frames back to the original HTMLCanvasElement, if the context is not directly fixed to a specific canvas.

WebGLRenderingContext.drawingBufferWidth

The read-only width of the current drawing buffer. Should match the width of the canvas element associated with this context.

WebGLRenderingContext.drawingBufferHeight

The read-only height of the current drawing buffer. Should match the height of the canvas element associated with this context.

WebGLRenderingContext.getContextAttributes()

Returns a WebGLContextAttributes object that contains the actual context parameters. Might return null, if the context is lost.

WebGLRenderingContext.isContextLost()

Returns true if the context is lost, otherwise returns false.

WebGLRenderingContext.makeXRCompatible()

Ensures the context is compatible with the user's XR hardware, re-creating the context if necessary with a new configuration to do so. This can be used to start an application using standard 2D presentation, then transition to using a VR or AR mode later.

Viewing and clipping

WebGLRenderingContext.scissor()

Defines the scissor box.

WebGLRenderingContext.viewport()

Sets the viewport.

State information

WebGLRenderingContext.activeTexture()

Selects the active texture unit.

WebGLRenderingContext.blendColor()

Sets the source and destination blending factors.

WebGLRenderingContext.blendEquation()

Sets both the RGB blend equation and alpha blend equation to a single equation.

WebGLRenderingContext.blendEquationSeparate()

Sets the RGB blend equation and alpha blend equation separately.

WebGLRenderingContext.blendFunc()

Defines which function is used for blending pixel arithmetic.

WebGLRenderingContext.blendFuncSeparate()

Defines which function is used for blending pixel arithmetic for RGB and alpha components separately.

WebGLRenderingContext.clearColor()

Specifies the color values used when clearing color buffers.

WebGLRenderingContext.clearDepth()

Specifies the depth value used when clearing the depth buffer.

WebGLRenderingContext.clearStencil()

Specifies the stencil value used when clearing the stencil buffer.

WebGLRenderingContext.colorMask()

Sets which color components to enable or to disable when drawing or rendering to a WebGLFramebuffer.

WebGLRenderingContext.cullFace()

Specifies whether or not front- and/or back-facing polygons can be culled.

WebGLRenderingContext.depthFunc()

Specifies a function that compares incoming pixel depth to the current depth buffer value.

WebGLRenderingContext.depthMask()

Sets whether writing into the depth buffer is enabled or disabled.

WebGLRenderingContext.depthRange()

Specifies the depth range mapping from normalized device coordinates to window or viewport coordinates.

WebGLRenderingContext.disable()

Disables specific WebGL capabilities for this context.

WebGLRenderingContext.enable()

Enables specific WebGL capabilities for this context.

WebGLRenderingContext.frontFace()

Specifies whether polygons are front- or back-facing by setting a winding orientation.

WebGLRenderingContext.getParameter()

Returns a value for the passed parameter name.

WebGLRenderingContext.getError()

Returns error information.

WebGLRenderingContext.hint()

Specifies hints for certain behaviors. The interpretation of these hints depend on the implementation.

WebGLRenderingContext.isEnabled()

Tests whether a specific WebGL capability is enabled or not for this context.

WebGLRenderingContext.lineWidth()

Sets the line width of rasterized lines.

WebGLRenderingContext.pixelStorei()

Specifies the pixel storage modes

WebGLRenderingContext.polygonOffset()

Specifies the scale factors and units to calculate depth values.

WebGLRenderingContext.sampleCoverage()

Specifies multi-sample coverage parameters for anti-aliasing effects.

WebGLRenderingContext.stencilFunc()

Sets the both front and back function and reference value for stencil testing.

WebGLRenderingContext.stencilFuncSeparate()

Sets the front and/or back function and reference value for stencil testing.

WebGLRenderingContext.stencilMask()

Controls enabling and disabling of both the front and back writing of individual bits in the stencil planes.

WebGLRenderingContext.stencilMaskSeparate()

Controls enabling and disabling of front and/or back writing of individual bits in the stencil planes.

WebGLRenderingContext.stencilOp()

Sets both the front and back-facing stencil test actions.

WebGLRenderingContext.stencilOpSeparate()

Sets the front and/or back-facing stencil test actions.

Buffers

WebGLRenderingContext.bindBuffer()

Binds a WebGLBuffer object to a given target.

WebGLRenderingContext.bufferData()

Updates buffer data.

WebGLRenderingContext.bufferSubData()

Updates buffer data starting at a passed offset.

WebGLRenderingContext.createBuffer()

Creates a WebGLBuffer object.

WebGLRenderingContext.deleteBuffer()

Deletes a WebGLBuffer object.

WebGLRenderingContext.getBufferParameter()

Returns information about the buffer.

WebGLRenderingContext.isBuffer()

Returns a Boolean indicating if the passed buffer is valid.

Framebuffers

WebGLRenderingContext.bindFramebuffer()

Binds a WebGLFrameBuffer object to a given target.

WebGLRenderingContext.checkFramebufferStatus()

Returns the status of the framebuffer.

WebGLRenderingContext.createFramebuffer()

Creates a WebGLFrameBuffer object.

WebGLRenderingContext.deleteFramebuffer()

Deletes a WebGLFrameBuffer object.

WebGLRenderingContext.framebufferRenderbuffer()

Attaches a WebGLRenderingBuffer object to a WebGLFrameBuffer object.

WebGLRenderingContext.framebufferTexture2D()

Attaches a textures image to a WebGLFrameBuffer object.

WebGLRenderingContext.getFramebufferAttachmentParameter()

Returns information about the framebuffer.

WebGLRenderingContext.isFramebuffer()

Returns a Boolean indicating if the passed WebGLFrameBuffer object is valid.

WebGLRenderingContext.readPixels()

Reads a block of pixels from the WebGLFrameBuffer.

Renderbuffers

WebGLRenderingContext.bindRenderbuffer()

Binds a WebGLRenderBuffer object to a given target.

WebGLRenderingContext.createRenderbuffer()

Creates a WebGLRenderBuffer object.

WebGLRenderingContext.deleteRenderbuffer()

Deletes a WebGLRenderBuffer object.

WebGLRenderingContext.getRenderbufferParameter()

Returns information about the renderbuffer.

WebGLRenderingContext.isRenderbuffer()

Returns a Boolean indicating if the passed WebGLRenderingBuffer is valid.

WebGLRenderingContext.renderbufferStorage()

Creates a renderbuffer data store.

Textures

WebGLRenderingContext.bindTexture()

Binds a WebGLTexture object to a given target.

WebGLRenderingContext.compressedTexImage2D()

Specifies a 2D texture image in a compressed format.

WebGLRenderingContext.compressedTexSubImage2D()

Specifies a 2D texture sub-image in a compressed format.

WebGLRenderingContext.copyTexImage2D()

Copies a 2D texture image.

WebGLRenderingContext.copyTexSubImage2D()

Copies a 2D texture sub-image.

WebGLRenderingContext.createTexture()

Creates a WebGLTexture object.

WebGLRenderingContext.deleteTexture()

Deletes a WebGLTexture object.

WebGLRenderingContext.generateMipmap()

Generates a set of mipmaps for a WebGLTexture object.

WebGLRenderingContext.getTexParameter()

Returns information about the texture.

WebGLRenderingContext.isTexture()

Returns a Boolean indicating if the passed WebGLTexture is valid.

WebGLRenderingContext.texImage2D()

Specifies a 2D texture image.

WebGLRenderingContext.texSubImage2D()

Updates a sub-rectangle of the current WebGLTexture.

WebGLRenderingContext.texParameterf()

Sets texture parameters.

WebGLRenderingContext.texParameteri()

Sets texture parameters.

Programs and shaders

WebGLRenderingContext.attachShader()

Attaches a WebGLShader to a WebGLProgram.

WebGLRenderingContext.bindAttribLocation()

Binds a generic vertex index to a named attribute variable.

WebGLRenderingContext.compileShader()

Compiles a WebGLShader.

WebGLRenderingContext.createProgram()

Creates a WebGLProgram.

WebGLRenderingContext.createShader()

Creates a WebGLShader.

WebGLRenderingContext.deleteProgram()

Deletes a WebGLProgram.

WebGLRenderingContext.deleteShader()

Deletes a WebGLShader.

WebGLRenderingContext.detachShader()

Detaches a WebGLShader.

WebGLRenderingContext.getAttachedShaders()

Returns a list of WebGLShader objects attached to a WebGLProgram.

WebGLRenderingContext.getProgramParameter()

Returns information about the program.

WebGLRenderingContext.getProgramInfoLog()

Returns the information log for a WebGLProgram object.

WebGLRenderingContext.getShaderParameter()

Returns information about the shader.

WebGLRenderingContext.getShaderPrecisionFormat()

Returns a WebGLShaderPrecisionFormat object describing the precision for the numeric format of the shader.

WebGLRenderingContext.getShaderInfoLog()

Returns the information log for a WebGLShader object.

WebGLRenderingContext.getShaderSource()

Returns the source code of a WebGLShader as a string.

WebGLRenderingContext.isProgram()

Returns a Boolean indicating if the passed WebGLProgram is valid.

WebGLRenderingContext.isShader()

Returns a Boolean indicating if the passed WebGLShader is valid.

WebGLRenderingContext.linkProgram()

Links the passed WebGLProgram object.

WebGLRenderingContext.shaderSource()

Sets the source code in a WebGLShader.

WebGLRenderingContext.useProgram()

Uses the specified WebGLProgram as part the current rendering state.

WebGLRenderingContext.validateProgram()

Validates a WebGLProgram.

Uniforms and attributes

WebGLRenderingContext.disableVertexAttribArray()

Disables a vertex attribute array at a given position.

WebGLRenderingContext.enableVertexAttribArray()

Enables a vertex attribute array at a given position.

WebGLRenderingContext.getActiveAttrib()

Returns information about an active attribute variable.

WebGLRenderingContext.getActiveUniform()

Returns information about an active uniform variable.

WebGLRenderingContext.getAttribLocation()

Returns the location of an attribute variable.

WebGLRenderingContext.getUniform()

Returns the value of a uniform variable at a given location.

WebGLRenderingContext.getUniformLocation()

Returns the location of a uniform variable.

WebGLRenderingContext.getVertexAttrib()

Returns information about a vertex attribute at a given position.

WebGLRenderingContext.getVertexAttribOffset()

Returns the address of a given vertex attribute.

WebGLRenderingContext.uniform[1234][fi][v]()

Specifies a value for a uniform variable.

WebGLRenderingContext.uniformMatrix[234]fv()

Specifies a matrix value for a uniform variable.

WebGLRenderingContext.vertexAttrib[1234]f[v]()

Specifies a value for a generic vertex attribute.

WebGLRenderingContext.vertexAttribPointer()

Specifies the data formats and locations of vertex attributes in a vertex attributes array.

Drawing buffers

WebGLRenderingContext.clear()

Clears specified buffers to preset values.

WebGLRenderingContext.drawArrays()

Renders primitives from array data.

WebGLRenderingContext.drawElements()

Renders primitives from element array data.

WebGLRenderingContext.finish()

Blocks execution until all previously called commands are finished.

WebGLRenderingContext.flush()

Empties different buffer commands, causing all commands to be executed as quickly as possible.

Working with extensions

These methods manage WebGL extensions:

WebGLRenderingContext.getSupportedExtensions()

Returns an Array of DOMString elements with all the supported WebGL extensions.

WebGLRenderingContext.getExtension()

Returns an extension object.

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
WebGLRenderingContext
9
12
To access the WebGL context, use experimental-webgl rather than the standard webgl identifier.
4
11
To access the WebGL context, use experimental-webgl rather than the standard webgl identifier.
12
5.1
≤37
25
Yes
12
8
1.5
activeTexture
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
attachShader
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
bindAttribLocation
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
bindBuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
bindFramebuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
bindRenderbuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
bindTexture
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
blendColor
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
blendEquation
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
blendEquationSeparate
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
blendFunc
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
blendFuncSeparate
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
bufferData
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
bufferSubData
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
canvas
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
checkFramebufferStatus
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
clear
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
clearColor
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
clearDepth
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
clearStencil
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
colorMask
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
commit
No
No
44
No
No
No
No
No
No
No
No
No
compileShader
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
compressedTexImage2D
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
compressedTexSubImage2D
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
copyTexImage2D
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
copyTexSubImage2D
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
createBuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
createFramebuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
createProgram
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
createRenderbuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
createShader
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
createTexture
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
cullFace
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
deleteBuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
deleteFramebuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
deleteProgram
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
deleteRenderbuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
deleteShader
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
deleteTexture
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
depthFunc
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
depthMask
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
depthRange
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
detachShader
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
disable
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
disableVertexAttribArray
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
drawArrays
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
drawElements
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
drawingBufferHeight
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
drawingBufferWidth
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
enable
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
enableVertexAttribArray
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
finish
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
flush
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
framebufferRenderbuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
framebufferTexture2D
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
frontFace
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
generateMipmap
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getActiveAttrib
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getActiveUniform
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getAttachedShaders
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getAttribLocation
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getBufferParameter
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getContextAttributes
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getError
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getExtension
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getFramebufferAttachmentParameter
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getParameter
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getProgramInfoLog
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getProgramParameter
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getRenderbufferParameter
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getShaderInfoLog
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getShaderParameter
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getShaderPrecisionFormat
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getShaderSource
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getSupportedExtensions
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getTexParameter
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getUniform
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getUniformLocation
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getVertexAttrib
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
getVertexAttribOffset
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
hint
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
isBuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
isContextLost
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
isEnabled
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
isFramebuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
isProgram
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
isRenderbuffer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
isShader
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
isTexture
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
lineWidth
No
12-79
No
11
No
No
No
No
No
No
No
No
linkProgram
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
makeXRCompatible
79
79
No
No
No
No
No
79
No
No
No
11.2
pixelStorei
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
polygonOffset
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
readPixels
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
renderbufferStorage
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
sampleCoverage
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
scissor
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
shaderSource
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
stencilFunc
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
stencilFuncSeparate
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
stencilMask
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
stencilMaskSeparate
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
stencilOp
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
stencilOpSeparate
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
texImage2D
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
texParameterf
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
texParameteri
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
texSubImage2D
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform1f
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform1fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform1i
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform1iv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform2f
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform2fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform2i
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform2iv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform3f
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform3fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform3i
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform3iv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform4f
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform4fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform4i
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniform4iv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniformMatrix2fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniformMatrix3fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
uniformMatrix4fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
useProgram
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
validateProgram
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
vertexAttrib1f
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
vertexAttrib1fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
vertexAttrib2f
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
vertexAttrib2fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
vertexAttrib3f
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
vertexAttrib3fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
vertexAttrib4f
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
vertexAttrib4fv
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
vertexAttribPointer
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
viewport
9
12
4
11
12
5.1
≤37
25
Yes
12
8
1.5
worker_support
No
No
44
No
No
No
No
No
No
No
No
No

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext