Changeset 88 for osgVisual/src
- Timestamp:
- Jul 29, 2010, 8:39:55 AM (14 years ago)
- Location:
- osgVisual/src
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/src/cluster/dataIO_clusterENet.cpp
r87 r88 22 22 { 23 23 OSG_NOTIFY( osg::ALWAYS ) << "clusterENet constructed" << std::endl; 24 #include <leakDetection.h>25 24 26 25 serverToConnect = "unknown"; -
osgVisual/src/cluster/dataIO_clusterENet_implementation.cpp
r87 r88 25 25 { 26 26 std::cout << "Instantiated server class# "<< activeENetInstances << std::endl; 27 #include <leakDetection.h> 27 28 28 enetInitialized = false; 29 29 host = NULL; -
osgVisual/src/core/osgVisual.cpp
r87 r88 26 26 #endif 27 27 28 28 29 //#include <windows.h> 29 30 … … 42 43 #ifdef _DEBUG 43 44 #ifdef WIN32 44 #include <leakDetection.h> // ugly but must be included inside the class 45 45 #include <leakDetection.h> // for main: must be inside function. In classes: headerfile inside calss is sufficient 46 46 int tmp_flag; 47 47 … … 55 55 _CRTDBG_MODE_DEBUG); 56 56 57 // output to the file if not under VS57 // output to the file 58 58 _CrtSetReportFile(_CRT_ASSERT, log_file); 59 59 _CrtSetReportFile(_CRT_WARN, log_file); -
osgVisual/src/core/visual_core.cpp
r87 r88 23 23 { 24 24 OSG_NOTIFY( osg::ALWAYS ) << "visual_core instantiated." << std::endl; 25 #include <leakDetection.h>26 25 } 27 26 … … 49 48 50 49 // Test memory leak (todo) 51 //double* test = new double[1000];50 double* test = new double[1000]; 52 51 53 52 #ifdef USE_SPACENAVIGATOR -
osgVisual/src/dataIO/visual_dataIO.cpp
r87 r88 22 22 { 23 23 OSG_NOTIFY( osg::ALWAYS ) << "visual_dataIO constructed" << std::endl; 24 #include <leakDetection.h> 24 25 25 initialized = false; 26 26 } -
osgVisual/src/distortion/visual_distortion.cpp
r87 r88 22 22 { 23 23 OSG_NOTIFY (osg::ALWAYS ) << "visual_distortion instantiated." << std::endl; 24 #include <leakDetection.h>25 24 26 25 initialized = false; -
osgVisual/src/draw2D/visual_debug_hud.cpp
r87 r88 21 21 visual_debug_hud::visual_debug_hud(void) 22 22 { 23 #include <leakDetection.h>24 23 } 25 24 -
osgVisual/src/draw2D/visual_draw2D.cpp
r87 r88 22 22 { 23 23 OSG_NOTIFY( osg::ALWAYS ) << "visual_draw2D constructed" << std::endl; 24 #include <leakDetection.h>25 24 initialized = false; 26 25 } -
osgVisual/src/draw2D/visual_hud.cpp
r87 r88 21 21 visual_hud::visual_hud(void) 22 22 { 23 #include <leakDetection.h>24 23 } 25 24 -
osgVisual/src/draw3D/visual_draw3D.cpp
r87 r88 21 21 visual_draw3D::visual_draw3D(void) 22 22 { 23 #include <leakDetection.h>24 23 } 25 24 -
osgVisual/src/extLink/dataIO_extLinkVCL.cpp
r87 r88 24 24 { 25 25 OSG_NOTIFY( osg::ALWAYS ) << "extLinkVCL constructed" << std::endl; 26 #include <leakDetection.h>27 26 } 28 27 -
osgVisual/src/extLink/manip_extLink.cpp
r87 r88 24 24 extLinkManipulator::extLinkManipulator() 25 25 { 26 #include <leakDetection.h>27 26 } 28 27 -
osgVisual/src/manip_ObjectMounted/manip_objectMounted.cpp
r87 r88 25 25 objectMountedManipulator::objectMountedManipulator() 26 26 { 27 #include <leakDetection.h>28 27 } 29 28 -
osgVisual/src/manip_Spacemouse/manip_freeSpaceMouse.cpp
r87 r88 25 25 FreeManipulator::FreeManipulator(SpaceMouse* spacemouse) : _spaceMouse(spacemouse) 26 26 { 27 #include <leakDetection.h>28 27 } 29 28 -
osgVisual/src/manip_Spacemouse/manip_nodeTrackerSpaceMouse.cpp
r87 r88 25 25 NodeTrackerSpaceMouse::NodeTrackerSpaceMouse(SpaceMouse* spacemouse) : _spaceMouse(spacemouse) 26 26 { 27 #include <leakDetection.h>28 27 _trackerMode = NODE_CENTER_AND_ROTATION; 29 28 _rotationMode = TRACKBALL; -
osgVisual/src/manip_Spacemouse/manip_spaceMouse.cpp
r87 r88 168 168 SpaceMouse::SpaceMouse() : _spaceMouseImpl(new SpaceMouseImpl) 169 169 { 170 #include <leakDetection.h>171 170 } 172 171 -
osgVisual/src/object/object_updater.cpp
r87 r88 21 21 object_updater::object_updater(osgVisual::visual_object* object_ ) 22 22 { 23 #include <leakDetection.h>24 23 } 25 24 -
osgVisual/src/object/visual_object.cpp
r87 r88 21 21 visual_object::visual_object( osg::CoordinateSystemNode* sceneRoot_, std::string nodeName_) 22 22 { 23 #include <leakDetection.h>24 25 23 // Add this node to Scenegraph 26 24 sceneRoot_->addChild( this ); -
osgVisual/src/sky_Silverlining/skySilverLining_cloudsDrawable.cpp
r87 r88 33 33 : osg::Drawable() 34 34 { 35 #include <leakDetection.h>36 35 setDataVariance(osg::Object::DYNAMIC); 37 36 setUseVertexBufferObjects(false); -
osgVisual/src/sky_Silverlining/skySilverLining_skyDrawable.cpp
r87 r88 36 36 , _skyboxSize(0) 37 37 { 38 #include <leakDetection.h>39 40 38 setDataVariance(osg::Object::DYNAMIC); 41 39 setUseVertexBufferObjects(false); -
osgVisual/src/sky_Silverlining/visual_skySilverLining.cpp
r87 r88 22 22 { 23 23 OSG_NOTIFY( osg::ALWAYS ) << "Initialize visual_skySilverlining..." << std::endl; 24 #include <leakDetection.h>25 24 26 25 atmosphereInitialized = false;
Note: See TracChangeset
for help on using the changeset viewer.