Interface RendererControl
-
public interface RendererControl
RendererControl controls the renderer
-
-
Field Summary
Fields Modifier and Type Field Description static CoordI2
REFERENCE_RESOLUTION
static double
SCALE_FACTOR_MAX
static double
SCALE_FACTOR_MIN
static CoordI2
TILE_DIMENSION
static int
TILE_SIZE
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description void
applyVideoOptions()
CoordI2
getAbsoluteViewportDimension()
CoordI2
getEffectiveViewportDimension()
int
getFrameRate()
double
getNormalizedZoomedTileSize()
double
getScaleFactor()
double
getScaleFactorModifier()
double
getTileZoomFactor()
long
getVideoOptionsAppliedAt()
double
getZoomedTileSize()
boolean
isForceAutoScaling()
void
setForceAutoScaling(boolean force)
void
setFrameRate(int frameRate)
void
setLoadingStatus(String status)
void
setScaleFactorModifier(double scaleFactorModifier)
void
setTileZoomFactor(double zoomFactor)
void
setTitle(String title)
static double
tileScaleFactor(double scaleFactor)
-
-
-
Field Detail
-
TILE_SIZE
static final int TILE_SIZE
- See Also:
- Constant Field Values
-
TILE_DIMENSION
static final CoordI2 TILE_DIMENSION
-
REFERENCE_RESOLUTION
static final CoordI2 REFERENCE_RESOLUTION
-
SCALE_FACTOR_MIN
static final double SCALE_FACTOR_MIN
- See Also:
- Constant Field Values
-
SCALE_FACTOR_MAX
static final double SCALE_FACTOR_MAX
- See Also:
- Constant Field Values
-
-
Method Detail
-
tileScaleFactor
static double tileScaleFactor(double scaleFactor)
-
setTitle
void setTitle(String title)
-
setLoadingStatus
void setLoadingStatus(String status)
-
applyVideoOptions
void applyVideoOptions()
-
getVideoOptionsAppliedAt
long getVideoOptionsAppliedAt()
-
getAbsoluteViewportDimension
CoordI2 getAbsoluteViewportDimension()
-
getEffectiveViewportDimension
CoordI2 getEffectiveViewportDimension()
-
getScaleFactor
double getScaleFactor()
-
getScaleFactorModifier
double getScaleFactorModifier()
-
setScaleFactorModifier
void setScaleFactorModifier(double scaleFactorModifier)
-
isForceAutoScaling
boolean isForceAutoScaling()
-
setForceAutoScaling
void setForceAutoScaling(boolean force)
-
getTileZoomFactor
double getTileZoomFactor()
-
setTileZoomFactor
void setTileZoomFactor(double zoomFactor)
-
getZoomedTileSize
double getZoomedTileSize()
-
getNormalizedZoomedTileSize
double getNormalizedZoomedTileSize()
-
getFrameRate
int getFrameRate()
-
setFrameRate
void setFrameRate(int frameRate)
-
-