Enum TextureFilter
- Namespace
- Pie
- Assembly
- Pie.dll
Represents various ways a texture can be filtered.
public enum TextureFilter
Fields
Anisotropic = 0Use anisotropic filtering.
MinLinearMagMipPoint = 5Use linear filtering for the min filter, and point filtering for the mag and mip filters.
MinLinearMagPointMipLinear = 6Use linear filtering for the min and mip filters, and point filtering for the mag filter.
MinMagLinearMipPoint = 7Use linear filtering for the min and mag filters, and point filtering for the mip filter.
MinMagMipLinear = 8Use linear filtering for the min, mag, and mip filters.
MinMagMipPoint = 1Use point filtering for the min, mag, and mip filters.
MinMagPointMipLinear = 2Use point filtering for the min and mag filters, and linear filtering for the mip filters.
MinPointMagLinearMipPoint = 3Use point filtering for the min and mip filters, and use linear filtering for the mag filter.
MinPointMagMipLinear = 4Use point filtering for the min filter, and linear filtering for the mag and mip filters.