TextureMinificationFilter

TextureMinificationFilter()

Enumerates all possible filters used when minifying WebGL textures.
See:

Members

staticconstantCesium.TextureMinificationFilter.LINEAR : Number

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

staticconstantCesium.TextureMinificationFilter.LINEAR_MIPMAP_LINEAR : Number

Read texture values with linear sampling from two adjacent mip levels and linearly interpolate the results.

This option provides a good balance of visual quality and speed when sampling from a mipmapped texture.

Requires that the texture has a mipmap. The mip level is chosen by the view angle and screen-space size of the texture.

staticconstantCesium.TextureMinificationFilter.LINEAR_MIPMAP_NEAREST : Number

Selects the nearest mip level and applies linear sampling within that level.

Requires that the texture has a mipmap. The mip level is chosen by the view angle and screen-space size of the texture.

staticconstantCesium.TextureMinificationFilter.NEAREST : Number

Samples the texture by returning the closest pixel.

staticconstantCesium.TextureMinificationFilter.NEAREST_MIPMAP_LINEAR : Number

Read texture values with nearest sampling from two adjacent mip levels and linearly interpolate the results.

This option provides a good balance of visual quality and speed when sampling from a mipmapped texture.

Requires that the texture has a mipmap. The mip level is chosen by the view angle and screen-space size of the texture.

staticconstantCesium.TextureMinificationFilter.NEAREST_MIPMAP_NEAREST : Number

Selects the nearest mip level and applies nearest sampling within that level.

Requires that the texture has a mipmap. The mip level is chosen by the view angle and screen-space size of the texture.