main.cesium.PostProcessStageSampleMode.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* Determines how input texture to a [PostProcessStage] is sampled.
* @see Online Documentation
*/
@JsName("\$cesium__PostProcessStageSampleMode")
external object /* enum */ PostProcessStageSampleMode {
/**
* Samples the texture by returning the closest texel.
*/
val NEAREST: PostProcessStageSampleMode
/**
* Samples the texture through bi-linear interpolation of the four nearest texels.
*/
val LINEAR: PostProcessStageSampleMode
}