OES_vertex_array_object: deleteVertexArrayOES() method

The OES_vertex_array_object.deleteVertexArrayOES() method of the WebGL API deletes a given WebGLVertexArrayObject object.

Syntax

deleteVertexArrayOES(arrayObject)

Parameters

arrayObject

A WebGLVertexArrayObject (VAO) object to delete.

Return value

None (undefined).

Examples

const ext = gl.getExtension("OES_vertex_array_object");
const vao = ext.createVertexArrayOES();
ext.bindVertexArrayOES(vao);

// …

ext.deleteVertexArrayOES(vao);

Specifications

Specification
WebGL OES_vertex_array_object Khronos Ratified Extension Specification

Browser compatibility

BCD tables only load in the browser

See also