Creates a new index buffer instance
A rendering context
If a normal array is passed in, it gets converted to an Uint16Array. Uint8 Arrays are not supported, as they come with performance caveats.
A rendering context
Number of indices in the buffer
The GL data type of the buffer. Always returns UNSIGNED_SHORT
Gets the native WebGlBuffer object
Binds the buffer, if it is not currently bound
Deletes the buffer
Generated using TypeDoc
Represents an index that is used to determine the order in which vertices are used to draw primitives. For example, if you have four vertices describing a rectangle in a clockwise order, you could describe it's two triangles as
[0,3,2, 0,2,1]
.