- Timestamp:
- 01/27/09 14:23:20 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgWrappers/osgViewer/ViewerBase.cpp
r8895 r9554 71 71 "", 72 72 ""); 73 I_Method1(void, set Stats, IN, osg::Stats *, stats,74 Properties:: NON_VIRTUAL,75 __void__set Stats__osg_Stats_P1,73 I_Method1(void, setViewerStats, IN, osg::Stats *, stats, 74 Properties::PURE_VIRTUAL, 75 __void__setViewerStats__osg_Stats_P1, 76 76 "Set the Stats object used for collect various frame related timing and scene graph stats. ", 77 77 ""); 78 I_Method0(osg::Stats *, get Stats,79 Properties:: NON_VIRTUAL,80 __osg_Stats_P1__get Stats,78 I_Method0(osg::Stats *, getViewerStats, 79 Properties::PURE_VIRTUAL, 80 __osg_Stats_P1__getViewerStats, 81 81 "Get the Viewers Stats object. ", 82 82 ""); 83 I_Method0(const osg::Stats *, get Stats,84 Properties:: NON_VIRTUAL,85 __C5_osg_Stats_P1__get Stats,83 I_Method0(const osg::Stats *, getViewerStats, 84 Properties::PURE_VIRTUAL, 85 __C5_osg_Stats_P1__getViewerStats, 86 86 "Get the Viewers Stats object. ", 87 87 ""); … … 375 375 __bool__getReleaseContextAtEndOfFrameHint, 376 376 __void__setReleaseContextAtEndOfFrameHint__bool); 377 I_SimpleProperty(osg::Stats *, Stats,378 __osg_Stats_P1__getStats,379 __void__setStats__osg_Stats_P1);380 377 I_SimpleProperty(osgViewer::ViewerBase::ThreadingModel, ThreadingModel, 381 378 __ThreadingModel__getThreadingModel, … … 390 387 __osg_FrameStamp_P1__getViewerFrameStamp, 391 388 0); 389 I_SimpleProperty(osg::Stats *, ViewerStats, 390 __osg_Stats_P1__getViewerStats, 391 __void__setViewerStats__osg_Stats_P1); 392 392 END_REFLECTOR 393 393
