Changeset 3212
- Timestamp:
- 08/02/04 11:11:31 (9 years ago)
- Location:
- OpenSceneGraph/trunk
- Files:
-
- 2 added
- 23 modified
-
VisualStudio/osgDB/osgDB.dsp (modified) (1 diff)
-
VisualStudio/osgGA/osgGA.dsp (modified) (1 diff)
-
include/osg/ConvexPlanarOccluder (modified) (1 diff)
-
include/osg/GLExtensions (modified) (1 diff)
-
include/osg/Shape (modified) (2 diffs)
-
include/osgDB/ReaderWriter (modified) (1 diff)
-
include/osgGA/GUIEventAdapter (modified) (1 diff)
-
include/osgProducer/OsgCameraGroup (modified) (1 diff)
-
include/osgSim/ScalarBar (modified) (1 diff)
-
src/osg/ConvexPlanarOccluder.cpp (modified) (1 diff)
-
src/osg/Shape.cpp (modified) (1 diff)
-
src/osgDB/GNUmakefile (modified) (1 diff)
-
src/osgDB/ReaderWriter.cpp (added)
-
src/osgGA/DriveManipulator.cpp (modified) (1 diff)
-
src/osgGA/GNUmakefile (modified) (1 diff)
-
src/osgGA/GUIEventAdapter.cpp (added)
-
src/osgGA/GUIEventHandler.cpp (modified) (1 diff)
-
src/osgPlugins/flt/AttrData.h (modified) (1 diff)
-
src/osgPlugins/flt/GeoSetBuilder.cpp (modified) (1 diff)
-
src/osgPlugins/flt/MeshPrimitiveRecord.cpp (modified) (1 diff)
-
src/osgPlugins/flt/MeshRecord.cpp (modified) (1 diff)
-
src/osgPlugins/flt/Registry.h (modified) (1 diff)
-
src/osgPlugins/flt/flt.h (modified) (1 diff)
-
src/osgProducer/OsgCameraGroup.cpp (modified) (1 diff)
-
src/osgSim/ScalarBar.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/VisualStudio/osgDB/osgDB.dsp
r3181 r3212 140 140 # Begin Source File 141 141 142 SOURCE=..\..\Src\osgDB\ReaderWriter.cpp 143 # End Source File 144 # Begin Source File 145 142 146 SOURCE=..\..\Src\osgDB\ReadFile.cpp 143 147 # End Source File -
OpenSceneGraph/trunk/VisualStudio/osgGA/osgGA.dsp
r3205 r3212 108 108 # Begin Source File 109 109 110 SOURCE=..\..\src\osgGA\GUIEventAdapter.cpp 111 # End Source File 112 # Begin Source File 113 110 114 SOURCE=..\..\src\osgGA\GUIEventHandler.cpp 111 115 # End Source File -
OpenSceneGraph/trunk/include/osg/ConvexPlanarOccluder
r1920 r3212 55 55 protected: 56 56 57 ~ConvexPlanarOccluder() {}57 ~ConvexPlanarOccluder(); // {} 58 58 59 59 ConvexPlanarPolygon _occluder; -
OpenSceneGraph/trunk/include/osg/GLExtensions
r2973 r3212 20 20 #if defined(WIN32) 21 21 #define WIN32_LEAN_AND_MEAN 22 #define NOMINMAX 22 #ifndef NOMINMAX 23 #define NOMINMAX 24 #endif // NOMINMAX 23 25 #include <windows.h> 24 26 #elif defined(__APPLE__) -
OpenSceneGraph/trunk/include/osg/Shape
r2767 r3212 83 83 protected: 84 84 85 virtual ~Shape() {}85 virtual ~Shape(); 86 86 }; 87 87 … … 572 572 protected: 573 573 574 ~HeightField() {}574 virtual ~HeightField(); 575 575 576 576 unsigned int _columns,_rows; -
OpenSceneGraph/trunk/include/osgDB/ReaderWriter
r2962 r3212 32 32 { 33 33 public: 34 virtual ~ReaderWriter() {}34 virtual ~ReaderWriter(); // {} 35 35 virtual const char* className() = 0; 36 36 virtual bool acceptsExtension(const std::string& /*extension*/) { return false; } -
OpenSceneGraph/trunk/include/osgGA/GUIEventAdapter
r1939 r3212 293 293 294 294 /** Force users to create on heap, so that multiple referencing is safe.*/ 295 virtual ~GUIEventAdapter() {}295 virtual ~GUIEventAdapter(); // {} 296 296 297 297 MouseYOrientation _mouseYOrientation; -
OpenSceneGraph/trunk/include/osgProducer/OsgCameraGroup
r3179 r3212 136 136 137 137 protected: 138 virtual ~RealizeCallback() {}138 virtual ~RealizeCallback(); // {} 139 139 }; 140 140 -
OpenSceneGraph/trunk/include/osgSim/ScalarBar
r3023 r3212 225 225 void update() { createDrawables(); } 226 226 227 private: 227 protected: 228 virtual ~ScalarBar(); 228 229 229 230 int _numColors; -
OpenSceneGraph/trunk/src/osg/ConvexPlanarOccluder.cpp
r1529 r3212 14 14 15 15 using namespace osg; 16 17 ConvexPlanarOccluder::~ConvexPlanarOccluder() 18 { 19 }; -
OpenSceneGraph/trunk/src/osg/Shape.cpp
r2398 r3212 15 15 16 16 using namespace osg; 17 18 Shape::~Shape() 19 { 20 } 21 22 HeightField::~HeightField() 23 { 24 } 25 17 26 18 27 void HeightField::allocate(unsigned int numColumns,unsigned int numRows) -
OpenSceneGraph/trunk/src/osgDB/GNUmakefile
r2631 r3212 8 8 FileUtils.cpp\ 9 9 ReadFile.cpp\ 10 ReaderWriter.cpp\ 10 11 Registry.cpp\ 11 12 Version.cpp\ -
OpenSceneGraph/trunk/src/osgGA/DriveManipulator.cpp
r3147 r3212 1 /* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 Robert Osfield 2 * 3 * This library is open source and may be redistributed and/or modified under 4 * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or 5 * (at your option) any later version. The full license is in LICENSE file 6 * included with this distribution, and on the openscenegraph.org website. 7 * 8 * This library is distributed in the hope that it will be useful, 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * OpenSceneGraph Public License for more details. 12 */ 13 1 14 #if defined(_MSC_VER) 2 15 #pragma warning( disable : 4786 ) -
OpenSceneGraph/trunk/src/osgGA/GNUmakefile
r3205 r3212 8 8 DriveManipulator.cpp\ 9 9 FlightManipulator.cpp\ 10 GUIEventAdapter.cpp\ 10 11 GUIEventHandler.cpp\ 11 12 GUIEventHandlerVisitor.cpp\ -
OpenSceneGraph/trunk/src/osgGA/GUIEventHandler.cpp
r1614 r3212 1 /* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2003 Robert Osfield 2 * 3 * This library is open source and may be redistributed and/or modified under 4 * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or 5 * (at your option) any later version. The full license is in LICENSE file 6 * included with this distribution, and on the openscenegraph.org website. 7 * 8 * This library is distributed in the hope that it will be useful, 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * OpenSceneGraph Public License for more details. 12 */ 13 1 14 #include <osgGA/GUIEventHandler> 2 15 -
OpenSceneGraph/trunk/src/osgPlugins/flt/AttrData.h
r2777 r3212 2 2 #define __ATTR_DATA_H 3 3 4 #if defined( WIN32) && !defined(__CYGWIN__)4 #if defined(_MSC_VER) 5 5 #pragma warning( disable : 4786 ) 6 6 #endif -
OpenSceneGraph/trunk/src/osgPlugins/flt/GeoSetBuilder.cpp
r2777 r3212 5 5 // Julian Ortiz, June 18th 2003. 6 6 7 #if defined( WIN32) && !defined(__CYGWIN__)7 #if defined(_MSC_VER) 8 8 #pragma warning( disable : 4786 ) 9 9 #endif -
OpenSceneGraph/trunk/src/osgPlugins/flt/MeshPrimitiveRecord.cpp
r1040 r3212 1 1 // MeshPrimitiveRecords.cpp 2 2 3 #if def _WIN323 #if defined(_MSC_VER) 4 4 #pragma warning(disable:4786) // Truncated debug names. 5 5 #endif -
OpenSceneGraph/trunk/src/osgPlugins/flt/MeshRecord.cpp
r1040 r3212 1 1 // MeshRecord.cpp 2 2 3 #if def _WIN323 #if defined(_MSC_VER) 4 4 #pragma warning(disable:4786) // Truncated debug names. 5 5 #endif -
OpenSceneGraph/trunk/src/osgPlugins/flt/Registry.h
r1990 r3212 5 5 #define __FLT_REGISTRY_H 6 6 7 #if defined( WIN32) && !defined(__CYGWIN__)7 #if defined(_MSC_VER) 8 8 #pragma warning( disable : 4786 ) 9 9 #endif -
OpenSceneGraph/trunk/src/osgPlugins/flt/flt.h
r1990 r3212 12 12 #include <assert.h> 13 13 14 #if defined(_ _CYGWIN__) || defined(__MINGW32__)14 #if defined(_MSC_VER) 15 15 #include <sys/types.h> 16 16 #endif -
OpenSceneGraph/trunk/src/osgProducer/OsgCameraGroup.cpp
r3179 r3212 27 27 using namespace osgProducer; 28 28 29 OsgCameraGroup::RealizeCallback::~RealizeCallback() 30 { 31 } 29 32 30 33 class RenderSurfaceRealizeCallback : public Producer::RenderSurface::Callback -
OpenSceneGraph/trunk/src/osgSim/ScalarBar.cpp
r3029 r3212 5 5 6 6 using namespace osgSim; 7 8 ScalarBar::~ScalarBar() 9 { 10 } 7 11 8 12 std::string ScalarBar::ScalarPrinter::printScalar(float scalar)
