#include <osgShadow/ShadowTechnique>
#include <map>
#include <osgShadow/Export>
Go to the source code of this file.
#define META_ViewDependentShadowTechniqueData |
( |
|
ShadowTechnique, |
|
|
|
TechniqueData |
|
) |
| |
Value:virtual ViewDependentShadowTechnique::ViewData * initViewDependentData \
{ \
TechniqueData* td = dynamic_cast<TechniqueData*>( vd ); \
if ( !td ) td = new TechniqueData; \
td->init( this, cv ); \
return td; \
}
META_ViewDependentShadowTechniqueData macro defines initViewDependentData method used by derived shadow techniques to initialize their specific ViewData objects. initViewDependentData will be called from ViewDependentShadowTechnique base class to init derived class
Definition at line 31 of file ViewDependentShadowTechnique.h.