Firefox Tomorrow

web api instance method

WebGLRenderingContext: disableVertexAttribArray() method

View on MDN ↗

Available in workers

The WebGLRenderingContext.disableVertexAttribArray() method of the WebGL API turns the generic vertex attribute array off at a given index position.

Syntax

disableVertexAttribArray(index)

Parameters

  • index
    • : A GLuint specifying the index of the vertex attribute to disable.

Return value

None (undefined).

Examples

gl.disableVertexAttribArray(0);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also