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,
;
}