Package apple.metal.enums
Class MTLSamplerMinMagFilter
- java.lang.Object
-
- apple.metal.enums.MTLSamplerMinMagFilter
-
public final class MTLSamplerMinMagFilter extends java.lang.Object[@enum] MTLSamplerMinMagFilter Options for filtering texels within a mip level. [@constant] MTLSamplerMinMagFilterNearest Select the single texel nearest to the sample point. [@constant] MTLSamplerMinMagFilterLinear Select two texels in each dimension, and interpolate linearly between them. Not all devices support linear filtering for all formats. Integer textures can not use linear filtering on any device, and only some devices support linear filtering of Float textures.
-
-
Field Detail
-
Nearest
public static final long Nearest
- See Also:
- Constant Field Values
-
Linear
public static final long Linear
- See Also:
- Constant Field Values
-
-