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

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

The newest version!
// Automatically generated - do not modify!

@file:JsModule("cesium")

package cesium

/**
 * Determines how input texture to a [PostProcessStage] is sampled.
 * @see Online Documentation
 */

external enum class PostProcessStageSampleMode {

    /**
     * Samples the texture by returning the closest texel.
     */
    NEAREST,

    /**
     * Samples the texture through bi-linear interpolation of the four nearest texels.
     */
    LINEAR,

    ;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy