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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidpostInit(ILspView aView, ILcdGLDrawable aGLDrawable) Called after the view is initialized to initialize this listener.voidpostPaintPhase(ILspView aView, ILcdGLDrawable aGLDrawable, TLspPaintPhase aPhase) Called after the view's layers are painted for the given paint phase.voidpostRender(ILspView aView, ILcdGLDrawable aGLDrawable) Called after the view's layers are rendered.voidpreDispose(ILspView aView, ILcdGLDrawable aGLDrawable) Called before the view is disposed to dispose of any resources held by this listener.voidprePaintPhase(ILspView aView, ILcdGLDrawable aGLDrawable, TLspPaintPhase aPhase) Called before the view's layers are painted for the given paint phase.voidpreRender(ILspView aView, ILcdGLDrawable aGLDrawable) Called before the view's layers are rendered.
-
Constructor Details
-
ALspViewAdapter
public ALspViewAdapter()
-
-
Method Details
-
postInit
Description copied from interface:ILspViewListenerCalled after the view is initialized to initialize this listener.- Specified by:
postInitin interfaceILspViewListener- Parameters:
aView- the view this listener belongs toaGLDrawable-
-
preDispose
Description copied from interface:ILspViewListenerCalled before the view is disposed to dispose of any resources held by this listener.- Specified by:
preDisposein interfaceILspViewListener- Parameters:
aView- the view this listener belongs toaGLDrawable-
-
preRender
Description copied from interface:ILspViewListenerCalled before the view's layers are rendered.- Specified by:
preRenderin interfaceILspViewListener- Parameters:
aView- the view this listener belongs toaGLDrawable-
-
prePaintPhase
Description copied from interface:ILspViewListenerCalled 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:
prePaintPhasein interfaceILspViewListener- Parameters:
aView- the view this listener belongs toaGLDrawable-aPhase- the phase that is currently painted
-
postPaintPhase
Description copied from interface:ILspViewListenerCalled 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:
postPaintPhasein interfaceILspViewListener- Parameters:
aView- the view this listener belongs toaGLDrawable-aPhase- the phase that is currently painted
-
postRender
Description copied from interface:ILspViewListenerCalled after the view's layers are rendered.- Specified by:
postRenderin interfaceILspViewListener- Parameters:
aView- the view this listener belongs toaGLDrawable-
-