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

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

// Automatically generated - do not modify!

@file:JsModule("cesium")

package cesium

/**
 * Enumerates all possible filters used when magnifying WebGL textures.
 * @see Online Documentation
 */

external enum class TextureMagnificationFilter {

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

    /**
     * Samples the texture through bi-linear interpolation of the four nearest pixels. This produces smoother results than `NEAREST` filtering.
     */
    LINEAR,

    ;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy