Enumeration TextureFilter

Minification and magnification filters for textures.

Enumeration Members

LINEAR: 9729

Choose four pixels from the largest mip and blends them.

LINEAR_MIPMAP_LINEAR: 9987

Choose the best two mips, then chooses four pixels from each and blends them.

LINEAR_MIPMAP_NEAREST: 9985

Choose the best mip, then blends four pixels from that mip.

NEAREST: 9728

Choose one pixel from the largest mip.

NEAREST_MIPMAP_LINEAR: 9986

Choose the best two mips, then chooses one pixel from each and blends them.

NEAREST_MIPMAP_NEAREST: 9984

Choose the best mip, then picks one pixel from that mip.