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 | |
|---|---|---|
| None |
Disables mipmap level selection and samples from the base level.
|
|
| Nearest |
Selects the nearest mipmap level for the calculated level of detail.
|
|
| Linear |
Interpolates between neighbouring mipmap levels for the calculated level of detail.
|