Liking cljdoc? Tell your friends :D

web.gl-ext.OES_vertex_array_object

The OES_vertex_array_object extension is part of the WebGL API provides vertex array objects (VAOs) which encapsulate vertex states. These objects keep pointers to vertex data and provide for different sets of vertex data.

The OES_vertex_array_object extension is part of the WebGL API
provides vertex array objects (VAOs) which encapsulate vertex
states. These objects keep pointers to vertex data and provide
for different sets of vertex data.
raw docstring

bind-vertex-array-oescljs

(bind-vertex-array-oes this array-object)

Method.

The OES_vertex_array_object.bindVertexArrayOES() method of the API binds a passed web.gl.WebGLVertexArrayObject object to buffer.

void ext.bindVertexArrayOES(arrayObject);

See also: https://developer.mozilla.org/en-US/docs/Web/API/OES_vertex_array_object/bindVertexArrayOES

Method.

The OES_vertex_array_object.bindVertexArrayOES() method of the
API binds a passed `web.gl.WebGLVertexArrayObject` object to
buffer.

`void ext.bindVertexArrayOES(arrayObject);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/OES_vertex_array_object/bindVertexArrayOES`
sourceraw docstring

create-vertex-array-oescljs

(create-vertex-array-oes this)

Method.

The OES_vertex_array_object.createVertexArrayOES() method of WebGL API creates and initializes a web.gl.WebGLVertexArrayObject that represents a vertex array object (VAO) pointing to vertex data and which provides names for different sets of vertex data.

WebGLVertexArrayObjectOES ext.createVertexArrayOES();

See also: https://developer.mozilla.org/en-US/docs/Web/API/OES_vertex_array_object/createVertexArrayOES

Method.

The OES_vertex_array_object.createVertexArrayOES() method of
WebGL API creates and initializes a `web.gl.WebGLVertexArrayObject`
that represents a vertex array object (VAO) pointing to vertex
data and which provides names for different sets of vertex data.

`WebGLVertexArrayObjectOES ext.createVertexArrayOES();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/OES_vertex_array_object/createVertexArrayOES`
sourceraw docstring

delete-vertex-array-oescljs

(delete-vertex-array-oes this array-object)

Method.

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

void ext.deleteVertexArrayOES(arrayObject);

See also: https://developer.mozilla.org/en-US/docs/Web/API/OES_vertex_array_object/deleteVertexArrayOES

Method.

The OES_vertex_array_object.deleteVertexArrayOES() method of
WebGL API deletes a given `web.gl.WebGLVertexArrayObject` object.

`void ext.deleteVertexArrayOES(arrayObject);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/OES_vertex_array_object/deleteVertexArrayOES`
sourceraw docstring

is-vertex-array-oescljs

(is-vertex-array-oes this array-object)

Method.

The OES_vertex_array_object.isVertexArrayOES() method of the API returns true if the passed object is a web.gl.WebGLVertexArrayObject

GLBoolean ext.isVertexArrayOES(arrayObject);

See also: https://developer.mozilla.org/en-US/docs/Web/API/OES_vertex_array_object/isVertexArrayOES

Method.

The OES_vertex_array_object.isVertexArrayOES() method of the
API returns true if the passed object is a `web.gl.WebGLVertexArrayObject`

`GLBoolean ext.isVertexArrayOES(arrayObject);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/OES_vertex_array_object/isVertexArrayOES`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close