Click or drag to resize

Texture.MagFilter Enumeration

Texture magnification filters

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public enum MagFilter
Members
  Member nameValueDescription
Nearest9728 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.
Linear9729 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