MagnificationFilter Enumeration |
The filter used when the pixel being textured maps to an area less than
or equal to one texel.
Namespace:
AGI.Foundation.Graphics.Renderer
Assembly:
AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public enum MagnificationFilter
Public Enumeration MagnificationFilter
public enum class MagnificationFilter
Members
| Member name | Description |
---|
| Nearest |
Use the texel that is closest to the center of the pixel being textured.
This usually faster than Linear but can produce images with sharper edges.
|
| Linear |
Use the weighted average of the four texels that are closest to the center of the
pixel being textured.
|
See Also