All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.cesium.IndexDatatype.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

package cesium

/**
 * Constants for WebGL index datatypes.  These corresponds to the
 * `type` parameter of [drawElements](http://www.khronos.org/opengles/sdk/docs/man/xhtml/glDrawElements.xml).
 * @see Online Documentation
 */

@JsName("\$cesium__IndexDatatype")
external object /* enum */ IndexDatatype {

    /**
     * 8-bit unsigned byte corresponding to `UNSIGNED_BYTE` and the type
     * of an element in `Uint8Array`.
     */
    val UNSIGNED_BYTE: IndexDatatype

    /**
     * 16-bit unsigned short corresponding to `UNSIGNED_SHORT` and the type
     * of an element in `Uint16Array`.
     */
    val UNSIGNED_SHORT: IndexDatatype

    /**
     * 32-bit unsigned int corresponding to `UNSIGNED_INT` and the type
     * of an element in `Uint32Array`.
     */
    val UNSIGNED_INT: IndexDatatype
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy