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