Home -> ITextureSampler -> MipmapMode

Description

The MipmapMode enumeration defines how a sampler selects between mipmap levels when a texture is minified. It is configured with SetTextureMipmapMode.

Members

Name Description
Public Enum None
Disables mipmap level selection and samples from the base level.
Public Enum Nearest
Selects the nearest mipmap level for the calculated level of detail.
Public Enum Linear
Interpolates between neighbouring mipmap levels for the calculated level of detail.

See also