STK Graphics PrimitivesSend comments on this topic.
AgEStkGraphicsMinificationFilter Enumeration
See Also

Description

The filter used when the pixel being textured maps to an area greater than one texel.

Members

MemberValueDescription
eStkGraphicsMinificationFilterNearest0Use the texel that is closest to the center of the pixel being textured.
eStkGraphicsMinificationFilterLinear1Use the weighted average of the four (for 2D textures, two for 1D textures) texels that are closest to the center of the pixel being textured.
eStkGraphicsMinificationFilterNearestMipMapNearest2Use the mipmap that most closely matches the size of the pixel being textured. Then use the texel from that mipmap that is closest to the center of the pixel being textured.
eStkGraphicsMinificationFilterLinearMipMapNearest3Use the mipmap that most closely matches the size of the pixel being textured. Then use the weighted average of the four (for 2D textures, two for 1D textures) texels from that mipmap that are closest to the center of the pixel being textured.
eStkGraphicsMinificationFilterNearestMipMapLinear4Use the two mipmaps that most closely match the size of the pixel being textured. Determine the texel that is closest to the center of the pixel being textured in each mipmap. The final texture value is a weighted average of these two texels.
eStkGraphicsMinificationFilterLinearMipMapLinear5Use the two mipmaps that most closely match the size of the pixel being textured. Determine the weighted average of the four (for 2D textures, two for 1D textures) texels that are closest to the center of the pixel being textured in each mipmap. The final texture value is a weighted average of these two texels.
© 2024 Analytical Graphics, Inc. All Rights Reserved.