main.cesium.TextureMagnificationFilter.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* Enumerates all possible filters used when magnifying WebGL textures.
* @see Online Documentation
*/
@JsName("\$cesium__TextureMagnificationFilter")
external object /* enum */ TextureMagnificationFilter {
/**
* Samples the texture by returning the closest pixel.
*/
val NEAREST: TextureMagnificationFilter
/**
* Samples the texture through bi-linear interpolation of the four nearest pixels. This produces smoother results than `NEAREST` filtering.
*/
val LINEAR: TextureMagnificationFilter
}