View source
enum abstract Context3DMipFilter(Null<Int>)
package openfl.display3D
Available on all platforms
Defines the values to use for sampler mipmap filter mode
Variables
inlineread onlyMIPLINEAR:Context3DMipFilter = 0
Select the two closest MIP levels and linearly blend between them (the highest quality mode, but has some performance cost).
inlineread onlyMIPNEAREST:Context3DMipFilter = 1
Use the nearest neighbor metric to select MIP levels (the fastest rendering method).
inlineread onlyMIPNONE:Context3DMipFilter = 2
Always use the top level texture (has a performance penalty when downscaling).