Interface IDisplay
- All Known Subinterfaces:
IHoldableDisplay,IMapDisplay
public interface IDisplay
Marker interface for all map displays.
-
Method Summary
Modifier and TypeMethodDescriptionvoiddestroy()Destroys the display and internal related resources.
WARNING: This method should be called when the display is no longer needed.pipeline()The defaultIPipelinefor this display.
You can also use multiple own pipelines for different purposes with the same display.intint
-
Method Details
-
pixelWidth
int pixelWidth()- Returns:
- the display total width (in available pixels)
-
pixelHeight
int pixelHeight()- Returns:
- the display total height (in available pixels)
-
pipeline
IPipeline pipeline()The defaultIPipelinefor this display.
You can also use multiple own pipelines for different purposes with the same display.- Returns:
- the default pipeline for this display
-
destroy
void destroy()Destroys the display and internal related resources.
WARNING: This method should be called when the display is no longer needed. It is not guaranteed that a display will work correctly after this method is called.
-