Changeset 9405 for OpenSceneGraph/trunk/examples/osgshadow/osgshadow.cpp
- Timestamp:
- 12/19/08 13:28:53 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osgshadow/osgshadow.cpp
r8920 r9405 43 43 #include <osgShadow/ParallelSplitShadowMap> 44 44 #include <osgShadow/LightSpacePerspectiveShadowMap> 45 #include <osgShadow/StandardShadowMap> 45 46 46 47 #include <osgDB/ReadFile> … … 615 616 shadowedScene->setShadowTechnique(st.get()); 616 617 } 618 else if (arguments.read("--stsm")) 619 { 620 osg::ref_ptr<osgShadow::StandardShadowMap> st = new osgShadow::StandardShadowMap; 621 shadowedScene->setShadowTechnique(st.get()); 622 } 617 623 else if (arguments.read("--pssm")) 618 624 {
