Click or drag to resize

FilterOption Enumeration

Filtering options for textures / mipmaps.

Namespace: NeoAxis
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public enum FilterOption
Members
Member nameValueDescription
None0No filtering, used for FilterType.Mip to turn off mipmapping.
Point1Use the closest pixel.
Linear2Average of a 2x2 pixel area, denotes bilinear for FilterType.Min and FilterType.Mag, trilinear for FilterType.Mip.
Anisotropic3Similar to FO_LINEAR, but compensates for the angle of the texture plane.
See Also