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