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

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

// Automatically generated - do not modify!

@file:JsModule("cesium")

package cesium

/**
 * Determines the function used to compare stencil values for the stencil test.
 * @see Online Documentation
 */

external enum class StencilFunction {

    /**
     * The stencil test never passes.
     */
    NEVER,

    /**
     * The stencil test passes when the masked reference value is less than the masked stencil value.
     */
    LESS,

    /**
     * The stencil test passes when the masked reference value is equal to the masked stencil value.
     */
    EQUAL,

    /**
     * The stencil test passes when the masked reference value is less than or equal to the masked stencil value.
     */
    LESS_OR_EQUAL,

    /**
     * The stencil test passes when the masked reference value is greater than the masked stencil value.
     */
    GREATER,

    /**
     * The stencil test passes when the masked reference value is not equal to the masked stencil value.
     */
    NOT_EQUAL,

    /**
     * The stencil test passes when the masked reference value is greater than or equal to the masked stencil value.
     */
    GREATER_OR_EQUAL,

    /**
     * The stencil test always passes.
     */
    ALWAYS,

    ;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy