Package | flash.display3D |
Class | public final class Context3DMipFilter |
Inheritance | Context3DMipFilter Object |
Language version: | ActionScript 3.0 |
Runtime version: | AIR 3.6 |
See also
Constant | Defined by | ||
---|---|---|---|
MIPLINEAR : String = "miplinear" [static]
Select the two closest MIP levels and linearly blend between them
(the highest quality mode, but has some performance cost).
| Context3DMipFilter | ||
MIPNEAREST : String = "mipnearest" [static]
Use the nearest neighbor metric to select MIP levels
(the fastest rendering method).
| Context3DMipFilter | ||
MIPNONE : String = "mipnone" [static]
Always use the top level texture
(has a performance penalty when downscaling).
| Context3DMipFilter |
MIPLINEAR | constant |
public static const MIPLINEAR:String = "miplinear"
Language version: | ActionScript 3.0 |
Runtime version: | AIR 3.6 |
Select the two closest MIP levels and linearly blend between them (the highest quality mode, but has some performance cost).
MIPNEAREST | constant |
public static const MIPNEAREST:String = "mipnearest"
Language version: | ActionScript 3.0 |
Runtime version: | AIR 3.6 |
Use the nearest neighbor metric to select MIP levels (the fastest rendering method).
MIPNONE | constant |
public static const MIPNONE:String = "mipnone"
Language version: | ActionScript 3.0 |
Runtime version: | AIR 3.6 |
Always use the top level texture (has a performance penalty when downscaling).