Enumeration TextureMinFilter

Minification filters for textures.

Enumeration Members

LINEAR: 9729

Chooses four pixels from the largest mip and blends them.

LINEAR_MIPMAP_LINEAR: 9987

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

LINEAR_MIPMAP_NEAREST: 9985

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

NEAREST: 9728

Chooses one pixel from the largest mip.

NEAREST_MIPMAP_LINEAR: 9986

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

NEAREST_MIPMAP_NEAREST: 9984

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

Generated using TypeDoc