On this page

Interface OES_vertex_array_object

The OES_vertex_array_object extension is part of the WebGL API and provides vertex array objects (VAOs) which encapsulate vertex array states.

MDN Reference

interface OES_vertex_array_object {
    VERTEX_ARRAY_BINDING_OES: 34229;
    bindVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;
    createVertexArrayOES(): WebGLVertexArrayObjectOES;
    deleteVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): void;
    isVertexArrayOES(arrayObject: WebGLVertexArrayObjectOES | null): boolean;
}
Index

Properties

VERTEX_ARRAY_BINDING_OES: 34229

Methods

  • The OES_vertex_array_object.deleteVertexArrayOES() method of the WebGL API deletes a given js-nolint deleteVertexArrayOES(arrayObject) - arrayObject - : A WebGLVertexArrayObject (VAO) object to delete.

    MDN Reference

    Parameters

    Returns void

Was this helpful?
SDK JS
Reference
OES_vertex_array_object