IndexDatatype

IndexDatatype

Constants for WebGL index datatypes. These corresponds to the type parameter of drawElements.

Source:

Members

<static, constant> :Number

0x1401. 8-bit unsigned byte corresponding to UNSIGNED_BYTE and the type of an element in Uint8Array.

<static, constant> :Number

0x1405. 32-bit unsigned int corresponding to UNSIGNED_INT and the type of an element in Uint32Array.

<static, constant> :Number

0x1403. 16-bit unsigned short corresponding to UNSIGNED_SHORT and the type of an element in Uint16Array.

Methods

<static>

Creates a typed array that will store indices, using either or Uint32Array depending on the number of vertices.

Parameters:
Name Type Description
numberOfVertices Number Number of vertices that the indices will reference.
indicesLengthOrArray Any Passed through to the typed array constructor.
Returns:
Array A Uint16Array or Uint32Array constructed with indicesLengthOrArray.
Example
this.indices = Cesium.IndexDatatype.createTypedArray(positions.length / 3, numberOfIndices);

<static>

Returns the size, in bytes, of the corresponding datatype.

Parameters:
Name Type Description
indexDatatype IndexDatatype The index datatype to get the size of.
Returns:
Number The size in bytes.
Example
// Returns 2
var size = Cesium.IndexDatatype.getSizeInBytes(Cesium.IndexDatatype.UNSIGNED_SHORT);

<static>

Validates that the provided index datatype is a valid IndexDatatype.

Parameters:
Name Type Description
indexDatatype IndexDatatype The index datatype to validate.
Returns:
Boolean true if the provided index datatype is a valid value; otherwise, false.
Example
if (!Cesium.IndexDatatype.validate(indexDatatype)) {
  throw new Cesium.DeveloperError('indexDatatype must be a valid value.');
}
Documentation generated by JSDoc 3 on Thu May 01 2014 08:49:23 GMT-0400 (EDT)