Chartbreaker
    Preparing search index...

    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: null | WebGLVertexArrayObjectOES): void;
        createVertexArrayOES(): WebGLVertexArrayObjectOES;
        deleteVertexArrayOES(arrayObject: null | WebGLVertexArrayObjectOES): void;
        isVertexArrayOES(arrayObject: null | WebGLVertexArrayObjectOES): 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