 | Texture.MagFilter Enumeration |
Texture magnification filters
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxPublic Enumeration MagFilter
public enum class MagFilter
Members
| Member name | Value | Description |
---|
| Nearest | 9728 |
Returns the value of the texture element that is nearest (in Manhattan distance) to the center of the pixel being textured.
This is usually the fastest method.
|
| Linear | 9729 |
Returns the weighted average of the four texture elements that are closest to the center of the pixel being textured.
This usually provides better quality.
|
See Also