Package apple.metal.enums
Class MTLSamplerMipFilter
- java.lang.Object
-
- apple.metal.enums.MTLSamplerMipFilter
-
public final class MTLSamplerMipFilter extends java.lang.Object[@enum] MTLSamplerMipFilter Options for selecting and filtering between mipmap levels [@constant] MTLSamplerMipFilterNotMipmapped The texture is sampled as if it only had a single mipmap level. All samples are read from level 0. [@constant] MTLSamplerMipFilterNearest The nearst mipmap level is selected. [@constant] MTLSamplerMipFilterLinear If the filter falls between levels, both levels are sampled, and their results linearly interpolated between levels.
-
-
Field Summary
Fields Modifier and Type Field Description static longLinearstatic longNeareststatic longNotMipmapped
-
-
-
Field Detail
-
NotMipmapped
public static final long NotMipmapped
- See Also:
- Constant Field Values
-
Nearest
public static final long Nearest
- See Also:
- Constant Field Values
-
Linear
public static final long Linear
- See Also:
- Constant Field Values
-
-