Note: This feature is available in Web Workers.
The WebGLRenderingContext.getVertexAttribOffset() method of the WebGL API returns the address of a specified vertex attribute.
getVertexAttribOffset(index, pname)indexA GLuint specifying the index of the vertex attribute.
pnameA GLenum which must be gl.VERTEX_ATTRIB_ARRAY_POINTER.
A GLintptr indicating the address of the vertex attribute.
gl.getVertexAttribOffset(i, gl.VERTEX_ATTRIB_ARRAY_POINTER);