Package com.luciad.view.lightspeed
Class ALspViewAdapter
java.lang.Object
com.luciad.view.lightspeed.ALspViewAdapter
- All Implemented Interfaces:
ILspViewListener
Empty implementation of
ILspViewListener
.- Since:
- 2012.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
postInit
(ILspView aView, ILcdGLDrawable aGLDrawable) Called after the view is initialized to initialize this listener.void
postPaintPhase
(ILspView aView, ILcdGLDrawable aGLDrawable, TLspPaintPhase aPhase) Called after the view's layers are painted for the given paint phase.void
postRender
(ILspView aView, ILcdGLDrawable aGLDrawable) Called after the view's layers are rendered.void
preDispose
(ILspView aView, ILcdGLDrawable aGLDrawable) Called before the view is disposed to dispose of any resources held by this listener.void
prePaintPhase
(ILspView aView, ILcdGLDrawable aGLDrawable, TLspPaintPhase aPhase) Called before the view's layers are painted for the given paint phase.void
preRender
(ILspView aView, ILcdGLDrawable aGLDrawable) Called before the view's layers are rendered.
-
Constructor Details
-
ALspViewAdapter
public ALspViewAdapter()
-
-
Method Details
-
postInit
Description copied from interface:ILspViewListener
Called after the view is initialized to initialize this listener.- Specified by:
postInit
in interfaceILspViewListener
- Parameters:
aView
- the view this listener is belongs toaGLDrawable
-
-
preDispose
Description copied from interface:ILspViewListener
Called before the view is disposed to dispose of any resources held by this listener.- Specified by:
preDispose
in interfaceILspViewListener
- Parameters:
aView
- the view this listener is belongs toaGLDrawable
-
-
preRender
Description copied from interface:ILspViewListener
Called before the view's layers are rendered.- Specified by:
preRender
in interfaceILspViewListener
- Parameters:
aView
- the view this listener belongs toaGLDrawable
-
-
prePaintPhase
Description copied from interface:ILspViewListener
Called before the view's layers are painted for the given paint phase. The paint pass indicates whether transparent or opaque objects should be painted, whether objects to be draped or not should be painted, etc. To ensure correct results and to avoid painting multiple times, it is important to consult this mode and to only paint when the proper paint pass is passed.- Specified by:
prePaintPhase
in interfaceILspViewListener
- Parameters:
aView
- the view this listener belongs toaGLDrawable
-aPhase
- the phase that is currently painted
-
postPaintPhase
Description copied from interface:ILspViewListener
Called after the view's layers are painted for the given paint phase. The paint phase indicates whether transparent or opaque objects should be painted, whether objects to be draped or not should be painted, etc. To ensure correct results and to avoid painting multiple times, it is important to consult this mode and to only paint when the proper paint phase is passed.- Specified by:
postPaintPhase
in interfaceILspViewListener
- Parameters:
aView
- the view this listener belongs toaGLDrawable
-aPhase
- the phase that is currently painted
-
postRender
Description copied from interface:ILspViewListener
Called after the view's layers are rendered.- Specified by:
postRender
in interfaceILspViewListener
- Parameters:
aView
- the view this listener belongs toaGLDrawable
-
-