main.cesium.DepthFunction.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* Determines the function used to compare two depths for the depth test.
* @see Online Documentation
*/
@JsName("\$cesium__DepthFunction")
external object /* enum */ DepthFunction {
/**
* The depth test never passes.
*/
val NEVER: DepthFunction
/**
* The depth test passes if the incoming depth is less than the stored depth.
*/
val LESS: DepthFunction
/**
* The depth test passes if the incoming depth is equal to the stored depth.
*/
val EQUAL: DepthFunction
/**
* The depth test passes if the incoming depth is less than or equal to the stored depth.
*/
val LESS_OR_EQUAL: DepthFunction
/**
* The depth test passes if the incoming depth is greater than the stored depth.
*/
val GREATER: DepthFunction
/**
* The depth test passes if the incoming depth is not equal to the stored depth.
*/
val NOT_EQUAL: DepthFunction
/**
* The depth test passes if the incoming depth is greater than or equal to the stored depth.
*/
val GREATER_OR_EQUAL: DepthFunction
/**
* The depth test always passes.
*/
val ALWAYS: DepthFunction
}