Changeset 6175
- Timestamp:
- 02/13/07 23:16:18
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
OpenSceneGraph/trunk/src/osgShadow/OccluderGeometry.cpp
r6017 r6175 272 272 typedef osg::TriangleFunctor<TriangleCollector> TriangleCollectorFunctor; 273 273 274 void OccluderGeometry::processGeometry(osg::Drawable* drawable, osg::Matrix* matrix, float sampleRatio)274 void OccluderGeometry::processGeometry(osg::Drawable* drawable, osg::Matrix* matrix, float /*sampleRatio*/) 275 275 { 276 276 // osg::notify(osg::NOTICE)<<"computeOccluderGeometry(osg::Node* subgraph, float sampleRatio)"<<std::endl; … … 742 742 void OccluderGeometry::computeShadowVolumeGeometry(const osg::Vec4& lightpos, ShadowVolumeGeometry& svg) const 743 743 { 744 osg::Timer_t t0 = osg::Timer::instance()->tick();744 // osg::Timer_t t0 = osg::Timer::instance()->tick(); 745 745 746 746 ShadowVolumeGeometry::Vec3List& shadowVertices = svg.getVertices(); … … 882 882 svg.dirtyBound(); 883 883 884 osg::Timer_t t1 = osg::Timer::instance()->tick();884 // osg::Timer_t t1 = osg::Timer::instance()->tick(); 885 885 // osg::notify(osg::NOTICE)<<"computeShadowVolumeGeometry "<<osg::Timer::instance()->delta_m(t0,t1)<<" ms"<<std::endl; 886 886 }
