WebGLRenderingContext: getVertexAttribOffset() method

Note: This feature is available in Web Workers.

The WebGLRenderingContext.getVertexAttribOffset() method of the WebGL API returns the address of a specified vertex attribute.

Syntax

js
getVertexAttribOffset(index, pname)

Parameters

index

A GLuint specifying the index of the vertex attribute.

pname

A GLenum which must be gl.VERTEX_ATTRIB_ARRAY_POINTER.

Return value

A GLintptr indicating the address of the vertex attribute.

Examples

js
gl.getVertexAttribOffset(i, gl.VERTEX_ATTRIB_ARRAY_POINTER);

Specifications

See also