Interface IDisplay
- All Known Subinterfaces:
IHoldableDisplay
,IMapDisplay
public interface IDisplay
Marker interface for all map displays.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
destroy()
Destroys the display and internal related resources.
WARNING: This method should be called when the display is no longer needed.pipeline()
The defaultIPipeline
for this display.
You can also use multiple own pipelines for different purposes with the same display.int
int
-
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 defaultIPipeline
for 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.
-