Package com.massifmaps.layers
Class RasterTileFilterMode
java.lang.Object
com.massifmaps.layers.RasterTileFilterMode
Supported raster tile filtering modes.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic @interfaceThe accepted values of this constant namespace. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intBicubic filter (interpolate between 16 closest texels).static final intBilinear filter (interpolate between 4 closest texels).static final intNo filter (nearest texel). -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
RASTER_TILE_FILTER_MODE_NEAREST
public static final int RASTER_TILE_FILTER_MODE_NEARESTNo filter (nearest texel).- See Also:
-
RASTER_TILE_FILTER_MODE_BILINEAR
public static final int RASTER_TILE_FILTER_MODE_BILINEARBilinear filter (interpolate between 4 closest texels).- See Also:
-
RASTER_TILE_FILTER_MODE_BICUBIC
public static final int RASTER_TILE_FILTER_MODE_BICUBICBicubic filter (interpolate between 16 closest texels).- See Also:
-
-
Constructor Details
-
RasterTileFilterMode
public RasterTileFilterMode()
-