diff --git a/AUTHORS.txt b/AUTHORS.txt index 18053c03a..0bb817cd4 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -1,4 +1,4 @@ -OpenSceneGraph Library 3.1.1 +OpenSceneGraph Library 3.1.2 480 Contributors: @@ -53,13 +53,13 @@ Robert Milharcic Philip Lowman Per Fahlberg Norman Vine +Luc Frauciel Laurens Voerman Brad Christiansen Art Tevs Terry Welsh Serge Lages Mathieu Marache -Luc Frauciel Chris Denham Alberto Farre Sherman Wilcox @@ -159,6 +159,7 @@ John Vidar Larring John Kelso John Ivar Gustav Haapalahti +Erik den Dekker Emmanuel Roche Domenico Mangieri Daniel Larimer @@ -182,6 +183,7 @@ Nathan Monteleone Miguel Escriva Mattias Linde Mark Sciabica +Lukasz Izdebski Lilin Xiong Lee Butler Konstantin Sinitsyn @@ -196,7 +198,6 @@ Gary Quinn Garrett Potts Gabor Dorka Fabio Mierlo -Erik den Dekker Doug McCorkle Donald Cipperly Don Leich @@ -244,7 +245,6 @@ Martin Lambers Martijn Kragtwijk Marius Heise Marcin Hajder -Lukasz Izdebski Lilith Bryant Lars Nilsson Kevin Moiule diff --git a/ChangeLog b/ChangeLog index f34c548f8..81b5de93c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,1339 @@ +2012-03-23 11:20 robert + + * src/osgPlugins/dae/daeRGeometry.cpp: Fixed potential memory leak + +2012-03-23 11:16 robert + + * src/osgPlugins/dae/daeRGeometry.cpp, + src/osgPlugins/dae/daeRMaterials.cpp, + src/osgPlugins/dae/daeReader.h: From Luc Frauciel, "I've + encoutered a nasty group of dae which are incompatible with dae + plugins (and probably collada schema ) in 4 different ways : + + 1) they use direct link to texture + + -> this is already handle by current plugin : OK + + 2) they defined colors with only 3 color components + + -> it leads to a crash when trying to acces to the fourth + component + I fixed that + + 3) they contain empty primitive lists + + -> reading is ok, but osgviewer crashes when trying to display + the geometries + The reason is that osg assume that DrawElementsare never empty + (blunt acces to DrawElements.front() in PrimitiveSet.cpp) + I corrected this (on the plugin side), but I wonder : + Is it the responsability of plugins to create non empty + DrawElements, or of osg core not to crash when they occur ? + If the responsability is on the osg core side, I can submit a + patch to PrimitiveSet.cpp regarding that aspect. + + 4) they use a material binding scheme not supported by the plugin + + ->I've implemented a mechanism to handle this binding scheme + + You will also find in the patch an example of these evil dae and + comments on the offending elements. + They seems to be produced by ComputaMaps (www.computamaps.com) + They load well in Google Earth + " + +2012-03-23 10:24 robert + + * src/OpenThreads/common/Atomic.cpp: From Ulrich Hertlein, "as + discussed on osg-users there is an issue with clang++ on OS X and + iOS that results in + the following error: + + Users/stephan/Documents/Projekte/cefix/cefix/ios/../../libs/ios/include/OpenThreads/Atomic:244:48: + error: cannot initialize a parameter of type 'void *' with an + lvalue of + type 'const void *const' + return __sync_bool_compare_and_swap(&_ptr, ptrOld, ptrNew); + + This can be solved by a cast to '(void*)ptrOld'. This should be + benign since both + 'ptrOld' and 'ptrNew' are only read and the cast is in fact in + place for all other + implementations as well. + + On OS X the cast compiles cleanly on both g++ + (i686-apple-darwin11-llvm-g++-4.2 (GCC) + 4.2.1) and clang++ (Apple clang version 3.1 + (tags/Apple/clang-318.0.54)). + " + +2012-03-23 10:21 robert + + * CMakeLists.txt, src/osgViewer/CMakeLists.txt: As per Ulrich + Hertlrein's suggestion, changed APPLE_PLATFORM_SDK_CANONICAL_NAME + to OSG_OSX_SDK_NAME. + +2012-03-23 10:18 robert + + * CMakeLists.txt, src/osgViewer/CMakeLists.txt: From Erik den + Dekker, " + IF(${CMAKE_OSX_SYSROOT} STREQUAL + "/Developer/SDKs/MacOSX10.7.sdk") + ... + + ELSEIF(${CMAKE_OSX_SYSROOT} STREQUAL + "/Developer/SDKs/MacOSX10.5.sdk" OR ${CMAKE_OSX_SYSROOT} STREQUAL + "/Developer/SDKs/MacOSX10.6.sdk") + + ... + + ELSEIF(EXISTS /Developer/SDKs/MacOSX10.4u.sdk) + ... + + ELSE() + + ... + + ENDIF() + + + Which is fragile because XCode could be installed into another + directory than /Developer. (In case XCode is not installed into + the /Developer directory CMake can automatically resolve the path + via command line utility ${CMAKE_XCODE_SELECT} --print-path) + + This issue bites me currently because the latest XCode (Version + 4.3.1 - 4E1019) installed through the Mac App Store is per + default installed in "/Applications/Xcode.app/Contents/Developer" + and hence the 10.7 SDK in + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk" + + Searching the web to find the proper way to determine the version + of the Platform SDK programmatically, I found no standard way. I + came up with 2 options myself: + + 1) Parse the path string to extract the version number + + 2) Read a value from the SDKSettings.plist found in the root of + each SDK (e.g., "defaults read + ${CMAKE_OSX_ROOT}/SDKSettings.plist CanonicalName" gives + "macosx10.7") + + I implemented the last option and verified that at least the + following Mac OS SDKs (10.3.9, 10.4, 10.5, 10.6, 10.7) support + this method. It also looks reasonably future proof. An additional + benefit of this method is that it also seems to be compatible + with iOS and iOS Simulator SDKs (at least for version 5.1, but I + assume this also applies to older versions). This is interesting + because the CMake infrastructure to build OSG for iOS currently + still contains similar hard-coded paths and even requires you to + manually change the cmake file to build for another iOS SDK + version. In the near future I hope to address these issues, but I + haven't been able to try this yet." + +2012-03-21 17:36 robert + + * include/OpenThreads/Barrier, include/OpenThreads/Block, + include/OpenThreads/Condition, include/OpenThreads/Exports, + include/OpenThreads/Mutex, include/OpenThreads/ReadWriteMutex, + include/OpenThreads/ReentrantMutex, + include/OpenThreads/ScopedLock, include/OpenThreads/Thread, + include/osg/AlphaFunc, include/osg/AnimationPath, + include/osg/ApplicationUsage, include/osg/ArgumentParser, + include/osg/Array, include/osg/ArrayDispatchers, + include/osg/AudioStream, include/osg/Billboard, + include/osg/BlendColor, include/osg/BlendEquation, + include/osg/BlendFunc, include/osg/BoundingBox, + include/osg/BoundingSphere, include/osg/BoundsChecking, + include/osg/BufferIndexBinding, include/osg/BufferObject, + include/osg/Camera, include/osg/CameraNode, + include/osg/CameraView, include/osg/ClampColor, + include/osg/ClearNode, include/osg/ClipNode, + include/osg/ClipPlane, include/osg/ClusterCullingCallback, + include/osg/CollectOccludersVisitor, include/osg/ColorMask, + include/osg/ColorMatrix, include/osg/ComputeBoundsVisitor, + include/osg/ConvexPlanarOccluder, + include/osg/ConvexPlanarPolygon, + include/osg/CoordinateSystemNode, include/osg/CopyOp, + include/osg/CullFace, include/osg/CullSettings, + include/osg/CullStack, include/osg/CullingSet, + include/osg/DeleteHandler, include/osg/Depth, + include/osg/DisplaySettings, include/osg/DrawPixels, + include/osg/Drawable, include/osg/Endian, include/osg/Export, + include/osg/Fog, include/osg/FragmentProgram, + include/osg/FrameBufferObject, include/osg/FrameStamp, + include/osg/FrontFace, include/osg/GL, include/osg/GL2Extensions, + include/osg/GLBeginEndAdapter, include/osg/GLExtensions, + include/osg/GLObjects, include/osg/GLU, include/osg/Geode, + include/osg/Geometry, include/osg/GraphicsContext, + include/osg/GraphicsThread, include/osg/Group, include/osg/Hint, + include/osg/Image, include/osg/ImageSequence, + include/osg/ImageStream, include/osg/ImageUtils, + include/osg/KdTree, include/osg/LOD, include/osg/Light, + include/osg/LightModel, include/osg/LightSource, + include/osg/LineSegment, include/osg/LineStipple, + include/osg/LineWidth, include/osg/LogicOp, include/osg/Material, + include/osg/Math, include/osg/Matrix, + include/osg/MatrixTransform, include/osg/Matrixd, + include/osg/Matrixf, include/osg/MixinVector, + include/osg/Multisample, include/osg/Node, + include/osg/NodeCallback, include/osg/NodeTrackerCallback, + include/osg/NodeVisitor, include/osg/Notify, include/osg/Object, + include/osg/OccluderNode, include/osg/OcclusionQueryNode, + include/osg/OperationThread, include/osg/PagedLOD, + include/osg/Plane, include/osg/Point, include/osg/PointSprite, + include/osg/PolygonMode, include/osg/PolygonOffset, + include/osg/PolygonStipple, include/osg/Polytope, + include/osg/PositionAttitudeTransform, include/osg/PrimitiveSet, + include/osg/Projection, include/osg/ProxyNode, include/osg/Quat, + include/osg/Referenced, include/osg/RenderInfo, + include/osg/Scissor, include/osg/Sequence, + include/osg/ShadeModel, include/osg/Shader, + include/osg/ShaderAttribute, include/osg/ShadowVolumeOccluder, + include/osg/Shape, include/osg/ShapeDrawable, include/osg/State, + include/osg/StateAttribute, include/osg/StateAttributeCallback, + include/osg/StateSet, include/osg/Stats, + include/osg/StencilTwoSided, include/osg/Switch, + include/osg/TexEnv, include/osg/TexEnvCombine, + include/osg/TexEnvFilter, include/osg/TexGen, + include/osg/TexGenNode, include/osg/TexMat, include/osg/Texture, + include/osg/Texture1D, include/osg/Texture2D, + include/osg/Texture2DArray, include/osg/Texture2DMultisample, + include/osg/Texture3D, include/osg/TextureCubeMap, + include/osg/TextureRectangle, include/osg/Timer, + include/osg/TransferFunction, include/osg/Transform, + include/osg/TriangleFunctor, include/osg/TriangleIndexFunctor, + include/osg/Uniform, include/osg/UserDataContainer, + include/osg/ValueObject, include/osg/Vec2, include/osg/Vec2b, + include/osg/Vec2d, include/osg/Vec2f, include/osg/Vec2s, + include/osg/Vec3, include/osg/Vec3b, include/osg/Vec3d, + include/osg/Vec3f, include/osg/Vec3s, include/osg/Vec4, + include/osg/Vec4b, include/osg/Vec4d, include/osg/Vec4f, + include/osg/Vec4s, include/osg/Vec4ub, include/osg/VertexProgram, + include/osg/View, include/osg/Viewport, + include/osg/buffered_value, include/osg/fast_back_stack, + include/osg/io_utils, include/osg/observer_ptr, + include/osg/ref_ptr, include/osgAnimation/Action, + include/osgAnimation/ActionAnimation, + include/osgAnimation/ActionBlendIn, + include/osgAnimation/ActionBlendOut, + include/osgAnimation/ActionCallback, + include/osgAnimation/ActionStripAnimation, + include/osgAnimation/ActionVisitor, + include/osgAnimation/Animation, + include/osgAnimation/AnimationManagerBase, + include/osgAnimation/AnimationUpdateCallback, + include/osgAnimation/BasicAnimationManager, + include/osgAnimation/Bone, include/osgAnimation/BoneMapVisitor, + include/osgAnimation/Channel, include/osgAnimation/CubicBezier, + include/osgAnimation/EaseMotion, include/osgAnimation/Export, + include/osgAnimation/FrameAction, + include/osgAnimation/Interpolator, include/osgAnimation/Keyframe, + include/osgAnimation/LinkVisitor, + include/osgAnimation/MorphGeometry, + include/osgAnimation/RigGeometry, + include/osgAnimation/RigTransform, + include/osgAnimation/RigTransformHardware, + include/osgAnimation/RigTransformSoftware, + include/osgAnimation/Sampler, include/osgAnimation/Skeleton, + include/osgAnimation/StackedMatrixElement, + include/osgAnimation/StackedQuaternionElement, + include/osgAnimation/StackedRotateAxisElement, + include/osgAnimation/StackedScaleElement, + include/osgAnimation/StackedTransform, + include/osgAnimation/StackedTransformElement, + include/osgAnimation/StackedTranslateElement, + include/osgAnimation/StatsHandler, + include/osgAnimation/StatsVisitor, include/osgAnimation/Target, + include/osgAnimation/Timeline, + include/osgAnimation/TimelineAnimationManager, + include/osgAnimation/UpdateBone, + include/osgAnimation/UpdateMaterial, + include/osgAnimation/UpdateMatrixTransform, + include/osgAnimation/Vec3Packed, + include/osgAnimation/VertexInfluence, include/osgDB/Archive, + include/osgDB/AuthenticationMap, include/osgDB/Callbacks, + include/osgDB/ConvertUTF, include/osgDB/DataTypes, + include/osgDB/DatabasePager, include/osgDB/DatabaseRevisions, + include/osgDB/DotOsgWrapper, include/osgDB/DynamicLibrary, + include/osgDB/Export, include/osgDB/ExternalFileWriter, + include/osgDB/FileCache, include/osgDB/FileNameUtils, + include/osgDB/FileUtils, include/osgDB/ImageOptions, + include/osgDB/ImagePager, include/osgDB/ImageProcessor, + include/osgDB/Input, include/osgDB/InputStream, + include/osgDB/ObjectWrapper, include/osgDB/Options, + include/osgDB/Output, include/osgDB/OutputStream, + include/osgDB/ParameterOutput, include/osgDB/PluginQuery, + include/osgDB/ReadFile, include/osgDB/ReaderWriter, + include/osgDB/Registry, include/osgDB/Serializer, + include/osgDB/SharedStateManager, include/osgDB/StreamOperator, + include/osgDB/Version, include/osgDB/WriteFile, + include/osgDB/XmlParser, include/osgDB/fstream, + include/osgFX/AnisotropicLighting, include/osgFX/BumpMapping, + include/osgFX/Cartoon, include/osgFX/Effect, + include/osgFX/Export, include/osgFX/MultiTextureControl, + include/osgFX/Registry, include/osgFX/Scribe, + include/osgFX/SpecularHighlights, include/osgFX/Technique, + include/osgFX/Validator, include/osgFX/Version, + include/osgGA/AnimationPathManipulator, + include/osgGA/CameraViewSwitchManipulator, + include/osgGA/EventQueue, include/osgGA/EventVisitor, + include/osgGA/Export, include/osgGA/GUIActionAdapter, + include/osgGA/GUIEventAdapter, include/osgGA/GUIEventHandler, + include/osgGA/MultiTouchTrackballManipulator, + include/osgGA/SphericalManipulator, + include/osgGA/StateSetManipulator, include/osgGA/UFOManipulator, + include/osgGA/Version, include/osgManipulator/AntiSquish, + include/osgManipulator/Command, include/osgManipulator/Dragger, + include/osgManipulator/Projector, include/osgManipulator/Version, + include/osgParticle/AccelOperator, + include/osgParticle/AngularAccelOperator, + include/osgParticle/AngularDampingOperator, + include/osgParticle/BounceOperator, + include/osgParticle/BoxPlacer, + include/osgParticle/CenteredPlacer, + include/osgParticle/CompositePlacer, + include/osgParticle/ConnectedParticleSystem, + include/osgParticle/ConstantRateCounter, + include/osgParticle/Counter, include/osgParticle/DampingOperator, + include/osgParticle/DomainOperator, include/osgParticle/Emitter, + include/osgParticle/ExplosionDebrisEffect, + include/osgParticle/ExplosionEffect, + include/osgParticle/ExplosionOperator, + include/osgParticle/Export, include/osgParticle/FireEffect, + include/osgParticle/FluidFrictionOperator, + include/osgParticle/FluidProgram, + include/osgParticle/ForceOperator, + include/osgParticle/Interpolator, + include/osgParticle/LinearInterpolator, + include/osgParticle/ModularEmitter, + include/osgParticle/ModularProgram, + include/osgParticle/MultiSegmentPlacer, + include/osgParticle/Operator, include/osgParticle/OrbitOperator, + include/osgParticle/Particle, include/osgParticle/ParticleEffect, + include/osgParticle/ParticleProcessor, + include/osgParticle/ParticleSystem, + include/osgParticle/ParticleSystemUpdater, + include/osgParticle/Placer, include/osgParticle/PointPlacer, + include/osgParticle/PrecipitationEffect, + include/osgParticle/Program, include/osgParticle/RadialShooter, + include/osgParticle/RandomRateCounter, + include/osgParticle/SectorPlacer, + include/osgParticle/SegmentPlacer, include/osgParticle/Shooter, + include/osgParticle/SinkOperator, + include/osgParticle/SmokeEffect, + include/osgParticle/SmokeTrailEffect, + include/osgParticle/VariableRateCounter, + include/osgParticle/Version, include/osgParticle/range, + include/osgPresentation/AnimationMaterial, + include/osgPresentation/CompileSlideCallback, + include/osgPresentation/Export, + include/osgPresentation/PickEventHandler, + include/osgPresentation/SlideEventHandler, + include/osgPresentation/SlideShowConstructor, + include/osgQt/Export, include/osgQt/GraphicsWindowQt, + include/osgQt/QFontImplementation, include/osgQt/QWidgetImage, + include/osgShadow/ConvexPolyhedron, + include/osgShadow/DebugShadowMap, include/osgShadow/Export, + include/osgShadow/LightSpacePerspectiveShadowMap, + include/osgShadow/MinimalCullBoundsShadowMap, + include/osgShadow/MinimalDrawBoundsShadowMap, + include/osgShadow/MinimalShadowMap, + include/osgShadow/OccluderGeometry, + include/osgShadow/ParallelSplitShadowMap, + include/osgShadow/ProjectionShadowMap, + include/osgShadow/ShadowMap, include/osgShadow/ShadowSettings, + include/osgShadow/ShadowTechnique, + include/osgShadow/ShadowTexture, include/osgShadow/ShadowVolume, + include/osgShadow/ShadowedScene, include/osgShadow/SoftShadowMap, + include/osgShadow/StandardShadowMap, include/osgShadow/Version, + include/osgShadow/ViewDependentShadowMap, + include/osgShadow/ViewDependentShadowTechnique, + include/osgSim/BlinkSequence, include/osgSim/ColorRange, + include/osgSim/DOFTransform, include/osgSim/ElevationSlice, + include/osgSim/Export, include/osgSim/GeographicLocation, + include/osgSim/HeightAboveTerrain, include/osgSim/Impostor, + include/osgSim/ImpostorSprite, + include/osgSim/InsertImpostorsVisitor, include/osgSim/LightPoint, + include/osgSim/LightPointNode, include/osgSim/LightPointSystem, + include/osgSim/LineOfSight, include/osgSim/MultiSwitch, + include/osgSim/ObjectRecordData, include/osgSim/OverlayNode, + include/osgSim/ScalarBar, include/osgSim/Sector, + include/osgSim/ShapeAttribute, include/osgSim/SphereSegment, + include/osgSim/Version, include/osgSim/VisibilityGroup, + include/osgTerrain/Export, include/osgTerrain/GeometryTechnique, + include/osgTerrain/Layer, include/osgTerrain/Locator, + include/osgTerrain/Terrain, include/osgTerrain/TerrainTechnique, + include/osgTerrain/TerrainTile, + include/osgTerrain/ValidDataOperator, include/osgTerrain/Version, + include/osgText/Export, include/osgText/FadeText, + include/osgText/Font, include/osgText/Glyph, + include/osgText/KerningType, include/osgText/String, + include/osgText/Text, include/osgText/TextBase, + include/osgText/Version, include/osgUtil/ConvertVec, + include/osgUtil/CubeMapGenerator, include/osgUtil/CullVisitor, + include/osgUtil/DelaunayTriangulator, + include/osgUtil/DisplayRequirementsVisitor, + include/osgUtil/DrawElementTypeSimplifier, + include/osgUtil/EdgeCollector, include/osgUtil/Export, + include/osgUtil/GLObjectsVisitor, + include/osgUtil/HalfWayMapGenerator, + include/osgUtil/HighlightMapGenerator, + include/osgUtil/IncrementalCompileOperation, + include/osgUtil/IntersectVisitor, include/osgUtil/MeshOptimizers, + include/osgUtil/OperationArrayFunctor, include/osgUtil/Optimizer, + include/osgUtil/PerlinNoise, + include/osgUtil/PositionalStateContainer, + include/osgUtil/PrintVisitor, + include/osgUtil/ReflectionMapGenerator, + include/osgUtil/RenderBin, include/osgUtil/RenderLeaf, + include/osgUtil/RenderStage, + include/osgUtil/ReversePrimitiveFunctor, + include/osgUtil/SceneGraphBuilder, include/osgUtil/SceneView, + include/osgUtil/ShaderGen, include/osgUtil/Simplifier, + include/osgUtil/SmoothingVisitor, include/osgUtil/StateGraph, + include/osgUtil/TangentSpaceGenerator, + include/osgUtil/Tessellator, + include/osgUtil/TransformAttributeFunctor, + include/osgUtil/TransformCallback, + include/osgUtil/TriStripVisitor, include/osgUtil/UpdateVisitor, + include/osgUtil/Version, include/osgViewer/CompositeViewer, + include/osgViewer/Export, include/osgViewer/Renderer, + include/osgViewer/Scene, include/osgViewer/Version, + include/osgViewer/View, include/osgViewer/Viewer, + include/osgViewer/ViewerBase, + include/osgViewer/ViewerEventHandlers, include/osgVolume/Export, + include/osgVolume/FixedFunctionTechnique, + include/osgVolume/Layer, include/osgVolume/Locator, + include/osgVolume/RayTracedTechnique, include/osgVolume/Version, + include/osgVolume/Volume, include/osgVolume/VolumeTechnique, + include/osgVolume/VolumeTile, include/osgWidget/Box, + include/osgWidget/Browser, include/osgWidget/Canvas, + include/osgWidget/EventInterface, include/osgWidget/Export, + include/osgWidget/Frame, include/osgWidget/Lua, + include/osgWidget/PdfReader, include/osgWidget/Python, + include/osgWidget/ScriptEngine, include/osgWidget/StyleInterface, + include/osgWidget/StyleManager, include/osgWidget/Table, + include/osgWidget/Types, include/osgWidget/UIObjectParent, + include/osgWidget/Util, include/osgWidget/ViewerEventHandlers, + include/osgWidget/VncClient, include/osgWidget/Widget, + include/osgWidget/Window, include/osgWidget/WindowManager, + src/osg/AlphaFunc.cpp, src/osg/AnimationPath.cpp, + src/osg/ApplicationUsage.cpp, src/osg/ArgumentParser.cpp, + src/osg/Array.cpp, src/osg/ArrayDispatchers.cpp, + src/osg/AudioStream.cpp, src/osg/AutoTransform.cpp, + src/osg/Billboard.cpp, src/osg/BlendColor.cpp, + src/osg/BlendEquation.cpp, src/osg/BlendFunc.cpp, + src/osg/BufferIndexBinding.cpp, src/osg/BufferObject.cpp, + src/osg/CameraView.cpp, src/osg/ClampColor.cpp, + src/osg/ClearNode.cpp, src/osg/ClipNode.cpp, + src/osg/ClipPlane.cpp, src/osg/ClusterCullingCallback.cpp, + src/osg/CollectOccludersVisitor.cpp, src/osg/ColorMask.cpp, + src/osg/ColorMatrix.cpp, src/osg/ComputeBoundsVisitor.cpp, + src/osg/ConvexPlanarOccluder.cpp, + src/osg/ConvexPlanarPolygon.cpp, + src/osg/CoordinateSystemNode.cpp, src/osg/CopyOp.cpp, + src/osg/CullFace.cpp, src/osg/CullSettings.cpp, + src/osg/CullStack.cpp, src/osg/CullingSet.cpp, + src/osg/DeleteHandler.cpp, src/osg/Depth.cpp, + src/osg/DisplaySettings.cpp, src/osg/DrawPixels.cpp, + src/osg/Drawable.cpp, src/osg/Fog.cpp, + src/osg/FragmentProgram.cpp, src/osg/FrameBufferObject.cpp, + src/osg/FrameStamp.cpp, src/osg/FrontFace.cpp, + src/osg/GL2Extensions.cpp, src/osg/GLBeginEndAdapter.cpp, + src/osg/GLExtensions.cpp, src/osg/GLObjects.cpp, + src/osg/GLStaticLibrary.cpp, src/osg/Geode.cpp, + src/osg/Geometry.cpp, src/osg/GraphicsContext.cpp, + src/osg/GraphicsThread.cpp, src/osg/Group.cpp, src/osg/Hint.cpp, + src/osg/Image.cpp, src/osg/ImageSequence.cpp, + src/osg/ImageStream.cpp, src/osg/ImageUtils.cpp, + src/osg/KdTree.cpp, src/osg/LOD.cpp, src/osg/Light.cpp, + src/osg/LightModel.cpp, src/osg/LightSource.cpp, + src/osg/LineSegment.cpp, src/osg/LineStipple.cpp, + src/osg/LineWidth.cpp, src/osg/LogicOp.cpp, src/osg/Material.cpp, + src/osg/Math.cpp, src/osg/MatrixDecomposition.cpp, + src/osg/MatrixTransform.cpp, src/osg/Matrix_implementation.cpp, + src/osg/Matrixd.cpp, src/osg/Matrixf.cpp, + src/osg/Multisample.cpp, src/osg/Node.cpp, + src/osg/NodeCallback.cpp, src/osg/NodeTrackerCallback.cpp, + src/osg/NodeVisitor.cpp, src/osg/Notify.cpp, src/osg/Object.cpp, + src/osg/OccluderNode.cpp, src/osg/OcclusionQueryNode.cpp, + src/osg/OperationThread.cpp, src/osg/PagedLOD.cpp, + src/osg/Point.cpp, src/osg/PointSprite.cpp, + src/osg/PolygonMode.cpp, src/osg/PolygonOffset.cpp, + src/osg/PolygonStipple.cpp, + src/osg/PositionAttitudeTransform.cpp, src/osg/PrimitiveSet.cpp, + src/osg/Program.cpp, src/osg/Projection.cpp, + src/osg/ProxyNode.cpp, src/osg/Quat.cpp, src/osg/Referenced.cpp, + src/osg/Scissor.cpp, src/osg/Sequence.cpp, + src/osg/ShadeModel.cpp, src/osg/Shader.cpp, + src/osg/ShadowVolumeOccluder.cpp, src/osg/Shape.cpp, + src/osg/ShapeDrawable.cpp, src/osg/State.cpp, + src/osg/StateAttribute.cpp, src/osg/StateSet.cpp, + src/osg/Stats.cpp, src/osg/StencilTwoSided.cpp, + src/osg/Switch.cpp, src/osg/TexEnv.cpp, + src/osg/TexEnvCombine.cpp, src/osg/TexEnvFilter.cpp, + src/osg/TexGen.cpp, src/osg/TexGenNode.cpp, src/osg/TexMat.cpp, + src/osg/Texture.cpp, src/osg/Texture1D.cpp, + src/osg/Texture2D.cpp, src/osg/Texture2DArray.cpp, + src/osg/Texture2DMultisample.cpp, src/osg/Texture3D.cpp, + src/osg/TextureCubeMap.cpp, src/osg/TextureRectangle.cpp, + src/osg/Timer.cpp, src/osg/Transform.cpp, src/osg/Uniform.cpp, + src/osg/UserDataContainer.cpp, src/osg/Version.cpp, + src/osg/VertexProgram.cpp, src/osg/View.cpp, + src/osg/Viewport.cpp, src/osg/dxtctool.cpp, + src/osgAnimation/Action.cpp, + src/osgAnimation/ActionAnimation.cpp, + src/osgAnimation/ActionBlendIn.cpp, + src/osgAnimation/ActionBlendOut.cpp, + src/osgAnimation/ActionCallback.cpp, + src/osgAnimation/ActionStripAnimation.cpp, + src/osgAnimation/ActionVisitor.cpp, + src/osgAnimation/Animation.cpp, + src/osgAnimation/AnimationManagerBase.cpp, + src/osgAnimation/BasicAnimationManager.cpp, + src/osgAnimation/Bone.cpp, src/osgAnimation/BoneMapVisitor.cpp, + src/osgAnimation/Channel.cpp, src/osgAnimation/LinkVisitor.cpp, + src/osgAnimation/MorphGeometry.cpp, + src/osgAnimation/RigGeometry.cpp, + src/osgAnimation/RigTransformHardware.cpp, + src/osgAnimation/RigTransformSoftware.cpp, + src/osgAnimation/Skeleton.cpp, + src/osgAnimation/StackedMatrixElement.cpp, + src/osgAnimation/StackedQuaternionElement.cpp, + src/osgAnimation/StackedRotateAxisElement.cpp, + src/osgAnimation/StackedScaleElement.cpp, + src/osgAnimation/StackedTransform.cpp, + src/osgAnimation/StackedTranslateElement.cpp, + src/osgAnimation/StatsHandler.cpp, + src/osgAnimation/StatsVisitor.cpp, src/osgAnimation/Target.cpp, + src/osgAnimation/Timeline.cpp, + src/osgAnimation/TimelineAnimationManager.cpp, + src/osgAnimation/UpdateBone.cpp, + src/osgAnimation/UpdateMaterial.cpp, + src/osgAnimation/UpdateMatrixTransform.cpp, + src/osgAnimation/VertexInfluence.cpp, src/osgDB/Archive.cpp, + src/osgDB/AuthenticationMap.cpp, src/osgDB/Callbacks.cpp, + src/osgDB/Compressors.cpp, src/osgDB/ConvertUTF.cpp, + src/osgDB/DatabasePager.cpp, src/osgDB/DatabaseRevisions.cpp, + src/osgDB/DotOsgWrapper.cpp, src/osgDB/ExternalFileWriter.cpp, + src/osgDB/Field.cpp, src/osgDB/FieldReader.cpp, + src/osgDB/FieldReaderIterator.cpp, src/osgDB/FileCache.cpp, + src/osgDB/FileNameUtils.cpp, src/osgDB/FileUtils.cpp, + src/osgDB/ImageOptions.cpp, src/osgDB/ImagePager.cpp, + src/osgDB/Input.cpp, src/osgDB/InputStream.cpp, + src/osgDB/MimeTypes.cpp, src/osgDB/ObjectWrapper.cpp, + src/osgDB/Options.cpp, src/osgDB/Output.cpp, + src/osgDB/OutputStream.cpp, src/osgDB/PluginQuery.cpp, + src/osgDB/ReadFile.cpp, src/osgDB/ReaderWriter.cpp, + src/osgDB/Registry.cpp, src/osgDB/SharedStateManager.cpp, + src/osgDB/Version.cpp, src/osgDB/WriteFile.cpp, + src/osgDB/XmlParser.cpp, src/osgDB/fstream.cpp, + src/osgFX/AnisotropicLighting.cpp, src/osgFX/BumpMapping.cpp, + src/osgFX/Cartoon.cpp, src/osgFX/MultiTextureControl.cpp, + src/osgFX/Registry.cpp, src/osgFX/SpecularHighlights.cpp, + src/osgFX/Technique.cpp, src/osgFX/Version.cpp, + src/osgGA/AnimationPathManipulator.cpp, + src/osgGA/CameraViewSwitchManipulator.cpp, + src/osgGA/DriveManipulator.cpp, src/osgGA/EventQueue.cpp, + src/osgGA/EventVisitor.cpp, src/osgGA/GUIEventAdapter.cpp, + src/osgGA/GUIEventHandler.cpp, + src/osgGA/MultiTouchTrackballManipulator.cpp, + src/osgGA/NodeTrackerManipulator.cpp, + src/osgGA/OrbitManipulator.cpp, + src/osgGA/SphericalManipulator.cpp, + src/osgGA/StandardManipulator.cpp, + src/osgGA/StateSetManipulator.cpp, src/osgGA/UFOManipulator.cpp, + src/osgGA/Version.cpp, src/osgManipulator/AntiSquish.cpp, + src/osgManipulator/Dragger.cpp, src/osgManipulator/Projector.cpp, + src/osgManipulator/RotateCylinderDragger.cpp, + src/osgManipulator/RotateSphereDragger.cpp, + src/osgManipulator/Scale1DDragger.cpp, + src/osgManipulator/Scale2DDragger.cpp, + src/osgManipulator/ScaleAxisDragger.cpp, + src/osgManipulator/TabBoxDragger.cpp, + src/osgManipulator/TabBoxTrackballDragger.cpp, + src/osgManipulator/TabPlaneDragger.cpp, + src/osgManipulator/TabPlaneTrackballDragger.cpp, + src/osgManipulator/TrackballDragger.cpp, + src/osgManipulator/Translate1DDragger.cpp, + src/osgManipulator/Translate2DDragger.cpp, + src/osgManipulator/TranslateAxisDragger.cpp, + src/osgManipulator/TranslatePlaneDragger.cpp, + src/osgManipulator/Version.cpp, + src/osgParticle/BounceOperator.cpp, + src/osgParticle/ConnectedParticleSystem.cpp, + src/osgParticle/DomainOperator.cpp, src/osgParticle/Emitter.cpp, + src/osgParticle/ExplosionDebrisEffect.cpp, + src/osgParticle/ExplosionEffect.cpp, + src/osgParticle/FireEffect.cpp, + src/osgParticle/FluidFrictionOperator.cpp, + src/osgParticle/FluidProgram.cpp, + src/osgParticle/ModularEmitter.cpp, + src/osgParticle/ModularProgram.cpp, + src/osgParticle/MultiSegmentPlacer.cpp, + src/osgParticle/Particle.cpp, src/osgParticle/ParticleEffect.cpp, + src/osgParticle/ParticleProcessor.cpp, + src/osgParticle/ParticleSystem.cpp, + src/osgParticle/ParticleSystemUpdater.cpp, + src/osgParticle/PrecipitationEffect.cpp, + src/osgParticle/SinkOperator.cpp, + src/osgParticle/SmokeEffect.cpp, + src/osgParticle/SmokeTrailEffect.cpp, + src/osgParticle/Version.cpp, + src/osgPlugins/3ds/ReaderWriter3DS.cpp, + src/osgPlugins/3ds/WriterCompareTriangle.cpp, + src/osgPlugins/3ds/WriterCompareTriangle.h, + src/osgPlugins/3ds/WriterNodeVisitor.cpp, + src/osgPlugins/3ds/WriterNodeVisitor.h, + src/osgPlugins/Inventor/ConvertToInventor.cpp, + src/osgPlugins/Inventor/ConvertToInventor.h, + src/osgPlugins/Inventor/PendulumCallback.h, + src/osgPlugins/Inventor/ShuttleCallback.h, + src/osgPlugins/OpenFlight/AncillaryRecords.cpp, + src/osgPlugins/OpenFlight/AttrData.cpp, + src/osgPlugins/OpenFlight/AttrData.h, + src/osgPlugins/OpenFlight/ControlRecords.cpp, + src/osgPlugins/OpenFlight/DataInputStream.cpp, + src/osgPlugins/OpenFlight/DataInputStream.h, + src/osgPlugins/OpenFlight/DataOutputStream.cpp, + src/osgPlugins/OpenFlight/DataOutputStream.h, + src/osgPlugins/OpenFlight/Document.cpp, + src/osgPlugins/OpenFlight/Document.h, + src/osgPlugins/OpenFlight/ExportOptions.cpp, + src/osgPlugins/OpenFlight/ExportOptions.h, + src/osgPlugins/OpenFlight/FltExportVisitor.cpp, + src/osgPlugins/OpenFlight/FltExportVisitor.h, + src/osgPlugins/OpenFlight/FltWriteResult.h, + src/osgPlugins/OpenFlight/GeometryRecords.cpp, + src/osgPlugins/OpenFlight/LightPointRecords.cpp, + src/osgPlugins/OpenFlight/LightSourcePaletteManager.cpp, + src/osgPlugins/OpenFlight/LightSourcePaletteManager.h, + src/osgPlugins/OpenFlight/MaterialPaletteManager.cpp, + src/osgPlugins/OpenFlight/MaterialPaletteManager.h, + src/osgPlugins/OpenFlight/Opcodes.h, + src/osgPlugins/OpenFlight/PaletteRecords.cpp, + src/osgPlugins/OpenFlight/Pools.cpp, + src/osgPlugins/OpenFlight/Pools.h, + src/osgPlugins/OpenFlight/PrimaryRecords.cpp, + src/osgPlugins/OpenFlight/ReaderWriterATTR.cpp, + src/osgPlugins/OpenFlight/ReaderWriterFLT.cpp, + src/osgPlugins/OpenFlight/Record.cpp, + src/osgPlugins/OpenFlight/Record.h, + src/osgPlugins/OpenFlight/RecordInputStream.cpp, + src/osgPlugins/OpenFlight/RecordInputStream.h, + src/osgPlugins/OpenFlight/Registry.cpp, + src/osgPlugins/OpenFlight/Registry.h, + src/osgPlugins/OpenFlight/ReservedRecords.cpp, + src/osgPlugins/OpenFlight/RoadRecords.cpp, + src/osgPlugins/OpenFlight/TexturePaletteManager.cpp, + src/osgPlugins/OpenFlight/TexturePaletteManager.h, + src/osgPlugins/OpenFlight/Types.h, + src/osgPlugins/OpenFlight/Utils.h, + src/osgPlugins/OpenFlight/Vertex.cpp, + src/osgPlugins/OpenFlight/Vertex.h, + src/osgPlugins/OpenFlight/VertexPaletteManager.cpp, + src/osgPlugins/OpenFlight/VertexPaletteManager.h, + src/osgPlugins/OpenFlight/VertexRecords.cpp, + src/osgPlugins/OpenFlight/expAncillaryRecords.cpp, + src/osgPlugins/OpenFlight/expControlRecords.cpp, + src/osgPlugins/OpenFlight/expGeometryRecords.cpp, + src/osgPlugins/OpenFlight/expPrimaryRecords.cpp, + src/osgPlugins/ac/Geode.cpp, src/osgPlugins/ac/ac3d.cpp, + src/osgPlugins/bmp/ReaderWriterBMP.cpp, + src/osgPlugins/bsp/BITSET.cpp, src/osgPlugins/bsp/BITSET.h, + src/osgPlugins/bsp/Q3BSPLoad.cpp, src/osgPlugins/bsp/Q3BSPLoad.h, + src/osgPlugins/bsp/Q3BSPReader.cpp, + src/osgPlugins/bsp/Q3BSPReader.h, + src/osgPlugins/bsp/ReaderWriterBSP.cpp, + src/osgPlugins/bsp/ReaderWriterBSP.h, + src/osgPlugins/bsp/VBSPData.cpp, src/osgPlugins/bsp/VBSPData.h, + src/osgPlugins/bsp/VBSPEntity.cpp, + src/osgPlugins/bsp/VBSPGeometry.cpp, + src/osgPlugins/bsp/VBSPReader.cpp, + src/osgPlugins/bsp/VBSPReader.h, + src/osgPlugins/bvh/ReaderWriterBVH.cpp, + src/osgPlugins/cfg/Camera.cpp, src/osgPlugins/cfg/Camera.h, + src/osgPlugins/cfg/CameraConfig.cpp, + src/osgPlugins/cfg/CameraConfig.h, + src/osgPlugins/cfg/ConfigLexer.cpp, + src/osgPlugins/cfg/ConfigParser.cpp, + src/osgPlugins/cfg/ReaderWriterCFG.cpp, + src/osgPlugins/cfg/RenderSurface.cpp, + src/osgPlugins/cfg/RenderSurface.h, + src/osgPlugins/cfg/VisualChooser.cpp, + src/osgPlugins/cfg/VisualChooser.h, + src/osgPlugins/curl/ReaderWriterCURL.cpp, + src/osgPlugins/curl/ReaderWriterCURL.h, + src/osgPlugins/dae/ReaderWriterDAE.cpp, + src/osgPlugins/dae/daeRAnimations.cpp, + src/osgPlugins/dae/daeRMaterials.cpp, + src/osgPlugins/dae/daeRSceneObjects.cpp, + src/osgPlugins/dae/daeReader.cpp, src/osgPlugins/dae/daeReader.h, + src/osgPlugins/dae/daeWGeometry.cpp, + src/osgPlugins/dae/daeWMaterials.cpp, + src/osgPlugins/dae/daeWSceneObjects.cpp, + src/osgPlugins/dae/daeWriter.cpp, + src/osgPlugins/dae/domSourceReader.cpp, + src/osgPlugins/dae/domSourceReader.h, + src/osgPlugins/dds/ReaderWriterDDS.cpp, + src/osgPlugins/dicom/ReaderWriterDICOM.cpp, + src/osgPlugins/directshow/DirectShowTexture.cpp, + src/osgPlugins/directshow/ReaderWriterDirectShow.cpp, + src/osgPlugins/dot/BaseDotVisitor.cpp, + src/osgPlugins/dot/BaseDotVisitor.h, + src/osgPlugins/dot/ReaderWriterDOT.cpp, + src/osgPlugins/dot/SimpleDotVisitor.cpp, + src/osgPlugins/dot/SimpleDotVisitor.h, + src/osgPlugins/dw/ReaderWriterDW.cpp, + src/osgPlugins/dxf/DXFWriterNodeVisitor.cpp, + src/osgPlugins/dxf/DXFWriterNodeVisitor.h, + src/osgPlugins/dxf/ReaderWriterDXF.cpp, + src/osgPlugins/dxf/aci.cpp, src/osgPlugins/dxf/aci.h, + src/osgPlugins/dxf/codeValue.h, src/osgPlugins/dxf/dxfBlock.cpp, + src/osgPlugins/dxf/dxfBlock.h, src/osgPlugins/dxf/dxfDataTypes.h, + src/osgPlugins/dxf/dxfEntity.cpp, src/osgPlugins/dxf/dxfEntity.h, + src/osgPlugins/dxf/dxfFile.cpp, src/osgPlugins/dxf/dxfFile.h, + src/osgPlugins/dxf/dxfReader.cpp, src/osgPlugins/dxf/dxfReader.h, + src/osgPlugins/dxf/dxfSection.cpp, + src/osgPlugins/dxf/dxfSection.h, + src/osgPlugins/dxf/dxfSectionBase.h, + src/osgPlugins/dxf/dxfTable.cpp, src/osgPlugins/dxf/dxfTable.h, + src/osgPlugins/dxf/scene.cpp, src/osgPlugins/dxf/scene.h, + src/osgPlugins/exr/ReaderWriterEXR.cpp, + src/osgPlugins/fbx/WriterCompareTriangle.cpp, + src/osgPlugins/fbx/WriterCompareTriangle.h, + src/osgPlugins/fbx/WriterNodeVisitor.cpp, + src/osgPlugins/fbx/WriterNodeVisitor.h, + src/osgPlugins/fbx/fbxMaterialToOsgStateSet.cpp, + src/osgPlugins/fbx/fbxRAnimation.cpp, + src/osgPlugins/fbx/fbxRMesh.cpp, + src/osgPlugins/ffmpeg/FFmpegAudioStream.cpp, + src/osgPlugins/ffmpeg/FFmpegClocks.cpp, + src/osgPlugins/ffmpeg/FFmpegDecoder.cpp, + src/osgPlugins/ffmpeg/FFmpegDecoderAudio.cpp, + src/osgPlugins/ffmpeg/FFmpegDecoderVideo.cpp, + src/osgPlugins/ffmpeg/FFmpegImageStream.cpp, + src/osgPlugins/ffmpeg/FFmpegParameters.cpp, + src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp, + src/osgPlugins/freetype/FreeTypeFont.cpp, + src/osgPlugins/freetype/FreeTypeFont.h, + src/osgPlugins/freetype/FreeTypeLibrary.cpp, + src/osgPlugins/freetype/FreeTypeLibrary.h, + src/osgPlugins/gdal/DataSetLayer.cpp, + src/osgPlugins/gdal/DataSetLayer.h, + src/osgPlugins/gdal/ReaderWriterGDAL.cpp, + src/osgPlugins/geo/ClipRegion.cpp, + src/osgPlugins/geo/ClipRegion.h, + src/osgPlugins/geo/ReaderWriterGEO.cpp, + src/osgPlugins/geo/geoActions.cpp, src/osgPlugins/geo/geoCore.h, + src/osgPlugins/geo/geoFormat.h, src/osgPlugins/geo/geoTypes.h, + src/osgPlugins/geo/geoUnits.h, src/osgPlugins/geo/geoVersion.h, + src/osgPlugins/geo/osgGeoAction.h, + src/osgPlugins/geo/osgGeoAnimation.h, + src/osgPlugins/geo/osgGeoNodes.h, + src/osgPlugins/geo/osgGeoStructs.h, + src/osgPlugins/gif/ReaderWriterGIF.cpp, + src/osgPlugins/glsl/ReaderWriterGLSL.cpp, + src/osgPlugins/gta/ReaderWriterGTA.cpp, + src/osgPlugins/gz/ReaderWriterGZ.cpp, + src/osgPlugins/hdr/ReaderWriterHDR.cpp, + src/osgPlugins/hdr/hdrloader.cpp, + src/osgPlugins/hdr/hdrwriter.cpp, src/osgPlugins/hdr/hdrwriter.h, + src/osgPlugins/imageio/ReaderWriterImageIO.cpp, + src/osgPlugins/imageio/ReaderWriterImageIO_IOS.cpp, + src/osgPlugins/ive/AnimationPathCallback.cpp, + src/osgPlugins/ive/AutoTransform.cpp, + src/osgPlugins/ive/BlinkSequence.cpp, + src/osgPlugins/ive/Camera.cpp, src/osgPlugins/ive/CameraView.cpp, + src/osgPlugins/ive/ClipPlane.cpp, + src/osgPlugins/ive/ClusterCullingCallback.cpp, + src/osgPlugins/ive/CompositeLayer.cpp, + src/osgPlugins/ive/ConvexPlanarPolygon.h, + src/osgPlugins/ive/DOFTransform.cpp, + src/osgPlugins/ive/DataInputStream.cpp, + src/osgPlugins/ive/DataInputStream.h, + src/osgPlugins/ive/DataOutputStream.cpp, + src/osgPlugins/ive/DataOutputStream.h, + src/osgPlugins/ive/DataTypeSize.h, + src/osgPlugins/ive/DrawArrayLengths.cpp, + src/osgPlugins/ive/DrawElementsUInt.cpp, + src/osgPlugins/ive/DrawElementsUShort.cpp, + src/osgPlugins/ive/Drawable.cpp, src/osgPlugins/ive/Effect.cpp, + src/osgPlugins/ive/EllipsoidModel.cpp, + src/osgPlugins/ive/Exception.h, src/osgPlugins/ive/FadeText.cpp, + src/osgPlugins/ive/Fog.cpp, src/osgPlugins/ive/Geode.cpp, + src/osgPlugins/ive/Geometry.cpp, src/osgPlugins/ive/Group.cpp, + src/osgPlugins/ive/HeightFieldLayer.cpp, + src/osgPlugins/ive/HeightFieldLayer.h, + src/osgPlugins/ive/Image.cpp, src/osgPlugins/ive/ImageLayer.cpp, + src/osgPlugins/ive/ImageLayer.h, + src/osgPlugins/ive/ImageSequence.cpp, + src/osgPlugins/ive/IveVersion.h, src/osgPlugins/ive/Layer.cpp, + src/osgPlugins/ive/Layer.h, src/osgPlugins/ive/LightPoint.cpp, + src/osgPlugins/ive/LightPointNode.cpp, + src/osgPlugins/ive/Locator.cpp, src/osgPlugins/ive/Locator.h, + src/osgPlugins/ive/Material.cpp, + src/osgPlugins/ive/Multisample.cpp, src/osgPlugins/ive/Node.cpp, + src/osgPlugins/ive/Object.cpp, src/osgPlugins/ive/PagedLOD.cpp, + src/osgPlugins/ive/PositionAttitudeTransform.cpp, + src/osgPlugins/ive/PrimitiveSet.cpp, + src/osgPlugins/ive/Program.cpp, src/osgPlugins/ive/ProxyNode.cpp, + src/osgPlugins/ive/ReaderWriterIVE.cpp, + src/osgPlugins/ive/Sequence.cpp, src/osgPlugins/ive/Shader.cpp, + src/osgPlugins/ive/Shape.cpp, + src/osgPlugins/ive/ShapeAttributeList.cpp, + src/osgPlugins/ive/ShapeAttributeList.h, + src/osgPlugins/ive/ShapeDrawable.cpp, + src/osgPlugins/ive/StateSet.cpp, src/osgPlugins/ive/Stencil.cpp, + src/osgPlugins/ive/StencilTwoSided.cpp, + src/osgPlugins/ive/SwitchLayer.cpp, + src/osgPlugins/ive/Terrain.cpp, src/osgPlugins/ive/Terrain.h, + src/osgPlugins/ive/TerrainTile.cpp, + src/osgPlugins/ive/TerrainTile.h, + src/osgPlugins/ive/TexEnvCombine.cpp, + src/osgPlugins/ive/TexGen.cpp, src/osgPlugins/ive/TexMat.cpp, + src/osgPlugins/ive/Text.cpp, src/osgPlugins/ive/Text3D.cpp, + src/osgPlugins/ive/Texture.cpp, src/osgPlugins/ive/Texture1D.cpp, + src/osgPlugins/ive/Texture2D.cpp, + src/osgPlugins/ive/Texture2DArray.h, + src/osgPlugins/ive/Texture3D.cpp, + src/osgPlugins/ive/TextureCubeMap.cpp, + src/osgPlugins/ive/TextureCubeMap.h, + src/osgPlugins/ive/TextureRectangle.cpp, + src/osgPlugins/ive/Uniform.cpp, src/osgPlugins/ive/Volume.cpp, + src/osgPlugins/ive/Volume.h, + src/osgPlugins/ive/VolumeCompositeLayer.cpp, + src/osgPlugins/ive/VolumeCompositeProperty.cpp, + src/osgPlugins/ive/VolumeCompositeProperty.h, + src/osgPlugins/ive/VolumeImageLayer.cpp, + src/osgPlugins/ive/VolumeImageLayer.h, + src/osgPlugins/ive/VolumeLayer.cpp, + src/osgPlugins/ive/VolumeLayer.h, + src/osgPlugins/ive/VolumeLocator.cpp, + src/osgPlugins/ive/VolumeLocator.h, + src/osgPlugins/ive/VolumeProperty.h, + src/osgPlugins/ive/VolumeScalarProperty.cpp, + src/osgPlugins/ive/VolumeScalarProperty.h, + src/osgPlugins/ive/VolumeSwitchProperty.cpp, + src/osgPlugins/ive/VolumeSwitchProperty.h, + src/osgPlugins/ive/VolumeTile.cpp, + src/osgPlugins/ive/VolumeTile.h, + src/osgPlugins/ive/VolumeTransferFunctionProperty.cpp, + src/osgPlugins/ive/VolumeTransferFunctionProperty.h, + src/osgPlugins/jp2/ReaderWriterJP2.cpp, + src/osgPlugins/jpeg/ReaderWriterJPEG.cpp, + src/osgPlugins/logo/ReaderWriterLOGO.cpp, + src/osgPlugins/lwo/Block.cpp, src/osgPlugins/lwo/Block.h, + src/osgPlugins/lwo/Converter.cpp, src/osgPlugins/lwo/Converter.h, + src/osgPlugins/lwo/Layer.h, src/osgPlugins/lwo/Object.cpp, + src/osgPlugins/lwo/Object.h, src/osgPlugins/lwo/Polygon.h, + src/osgPlugins/lwo/ReaderWriterLWO.cpp, + src/osgPlugins/lwo/Surface.cpp, + src/osgPlugins/lwo/Tessellator.cpp, src/osgPlugins/lwo/Unit.cpp, + src/osgPlugins/lwo/iffparser.h, src/osgPlugins/lwo/lwo2chunks.h, + src/osgPlugins/lwo/lwo2parser.h, src/osgPlugins/lwo/lwo2read.h, + src/osgPlugins/lwo/lwo2types.h, src/osgPlugins/lwo/old_Lwo2.cpp, + src/osgPlugins/lwo/old_Lwo2.h, + src/osgPlugins/lwo/old_Lwo2Layer.cpp, + src/osgPlugins/lwo/old_Lwo2Layer.h, + src/osgPlugins/lwo/old_lw.cpp, src/osgPlugins/lwo/old_lw.h, + src/osgPlugins/lws/ReaderWriterLWS.cpp, + src/osgPlugins/lws/SceneLoader.cpp, + src/osgPlugins/lws/SceneLoader.h, + src/osgPlugins/md2/ReaderWriterMD2.cpp, + src/osgPlugins/md2/anorms.h, src/osgPlugins/mdl/MDLReader.cpp, + src/osgPlugins/mdl/ReaderWriterMDL.cpp, + src/osgPlugins/mdl/ReaderWriterMDL.h, + src/osgPlugins/mdl/VTXReader.cpp, + src/osgPlugins/mdl/VVDReader.cpp, + src/osgPlugins/normals/Normals.cpp, + src/osgPlugins/normals/Normals.h, + src/osgPlugins/normals/ReaderWriterNormals.cpp, + src/osgPlugins/obj/OBJWriterNodeVisitor.cpp, + src/osgPlugins/obj/OBJWriterNodeVisitor.h, + src/osgPlugins/obj/ReaderWriterOBJ.cpp, + src/osgPlugins/obj/obj.cpp, src/osgPlugins/obj/obj.h, + src/osgPlugins/ogr/ReaderWriterOGR.cpp, + src/osgPlugins/osg/AsciiStreamOperator.h, + src/osgPlugins/osg/BinaryStreamOperator.h, + src/osgPlugins/osg/ReaderWriterOSG.cpp, + src/osgPlugins/osg/ReaderWriterOSG2.cpp, + src/osgPlugins/osg/XmlStreamOperator.h, + src/osgPlugins/osga/OSGA_Archive.cpp, + src/osgPlugins/osga/OSGA_Archive.h, + src/osgPlugins/osga/ReaderWriterOSGA.cpp, + src/osgPlugins/osgtgz/ReaderWriterOSGTGZ.cpp, + src/osgPlugins/p3d/ReaderWriterP3D.cpp, + src/osgPlugins/p3d/ReaderWriterPaths.cpp, + src/osgPlugins/pdf/ReaderWriterPDF.cpp, + src/osgPlugins/pfb/ConvertFromPerformer.cpp, + src/osgPlugins/pic/ReaderWriterPIC.cpp, + src/osgPlugins/ply/ReaderWriterPLY.cpp, src/osgPlugins/ply/ply.h, + src/osgPlugins/ply/plyfile.cpp, src/osgPlugins/ply/typedefs.h, + src/osgPlugins/ply/vertexData.cpp, + src/osgPlugins/ply/vertexData.h, + src/osgPlugins/png/ReaderWriterPNG.cpp, + src/osgPlugins/pnm/ReaderWriterPNM.cpp, + src/osgPlugins/pvr/ReaderWriterPVR.cpp, + src/osgPlugins/qfont/ReaderQFont.cpp, + src/osgPlugins/quicktime/MovieData.cpp, + src/osgPlugins/quicktime/MovieData.h, + src/osgPlugins/quicktime/QTImportExport.cpp, + src/osgPlugins/quicktime/QTImportExport.h, + src/osgPlugins/quicktime/QTLiveUtils.cpp, + src/osgPlugins/quicktime/QTLiveUtils.h, + src/osgPlugins/quicktime/QTUtils.h, + src/osgPlugins/quicktime/QuicktimeImageStream.cpp, + src/osgPlugins/quicktime/QuicktimeImageStream.h, + src/osgPlugins/quicktime/QuicktimeLiveImageStream.cpp, + src/osgPlugins/quicktime/ReaderWriterQT.cpp, + src/osgPlugins/rgb/ReaderWriterRGB.cpp, + src/osgPlugins/rot/ReaderWriterROT.cpp, + src/osgPlugins/scale/ReaderWriterSCALE.cpp, + src/osgPlugins/shadow/ReaderWriterOsgShadow.cpp, + src/osgPlugins/shp/ESRIShape.cpp, src/osgPlugins/shp/ESRIShape.h, + src/osgPlugins/shp/ESRIShapeParser.cpp, + src/osgPlugins/shp/ESRIShapeParser.h, + src/osgPlugins/shp/ESRIShapeReaderWriter.cpp, + src/osgPlugins/shp/XBaseParser.cpp, + src/osgPlugins/shp/XBaseParser.h, + src/osgPlugins/stl/ReaderWriterSTL.cpp, + src/osgPlugins/svg/ReaderWriterSVG.cpp, + src/osgPlugins/terrain/ReaderWriterOsgTerrain.cpp, + src/osgPlugins/tga/ReaderWriterTGA.cpp, + src/osgPlugins/tgz/ReaderWriterTGZ.cpp, + src/osgPlugins/tiff/ReaderWriterTIFF.cpp, + src/osgPlugins/trans/ReaderWriterTRANS.cpp, + src/osgPlugins/txf/ReaderWriterTXF.cpp, + src/osgPlugins/txf/TXFFont.cpp, src/osgPlugins/txf/TXFFont.h, + src/osgPlugins/txp/ReaderWriterTXP.cpp, + src/osgPlugins/txp/ReaderWriterTXP.h, + src/osgPlugins/txp/TXPArchive.cpp, + src/osgPlugins/txp/TXPArchive.h, src/osgPlugins/txp/TXPIO.cpp, + src/osgPlugins/txp/TXPNode.cpp, src/osgPlugins/txp/TXPNode.h, + src/osgPlugins/txp/TXPPageManager.cpp, + src/osgPlugins/txp/TXPPageManager.h, + src/osgPlugins/txp/TXPPagedLOD.cpp, + src/osgPlugins/txp/TXPPagedLOD.h, + src/osgPlugins/txp/TXPParser.cpp, + src/osgPlugins/txp/TXPSeamLOD.cpp, + src/osgPlugins/txp/TXPSeamLOD.h, + src/osgPlugins/txp/TileMapper.cpp, + src/osgPlugins/txp/TileMapper.h, + src/osgPlugins/txp/trpage_compat.cpp, + src/osgPlugins/txp/trpage_geom.h, + src/osgPlugins/txp/trpage_header.cpp, + src/osgPlugins/txp/trpage_io.h, + src/osgPlugins/txp/trpage_label.cpp, + src/osgPlugins/txp/trpage_light.cpp, + src/osgPlugins/txp/trpage_managers.cpp, + src/osgPlugins/txp/trpage_managers.h, + src/osgPlugins/txp/trpage_material.cpp, + src/osgPlugins/txp/trpage_model.cpp, + src/osgPlugins/txp/trpage_nodes.cpp, + src/osgPlugins/txp/trpage_parse.cpp, + src/osgPlugins/txp/trpage_pparse.cpp, + src/osgPlugins/txp/trpage_range.cpp, + src/osgPlugins/txp/trpage_rarchive.cpp, + src/osgPlugins/txp/trpage_read.h, + src/osgPlugins/txp/trpage_readbuf.cpp, + src/osgPlugins/txp/trpage_scene.cpp, + src/osgPlugins/txp/trpage_swap.cpp, + src/osgPlugins/txp/trpage_tile.cpp, + src/osgPlugins/txp/trpage_warchive.cpp, + src/osgPlugins/txp/trpage_write.h, + src/osgPlugins/txp/trpage_writebuf.cpp, + src/osgPlugins/view/ReaderWriterOsgViewer.cpp, + src/osgPlugins/vnc/ReaderWriterVNC.cpp, + src/osgPlugins/vrml/ConvertToVRML.cpp, + src/osgPlugins/vrml/ConvertToVRML.h, + src/osgPlugins/vrml/ReaderWriterVRML2.cpp, + src/osgPlugins/vrml/ReaderWriterVRML2.h, + src/osgPlugins/vtf/ReaderWriterVTF.cpp, + src/osgPlugins/x/ReaderWriterDirectX.cpp, + src/osgPlugins/x/mesh.cpp, + src/osgPlugins/xine/ReaderWriterXine.cpp, + src/osgPlugins/zip/ReaderWriterZIP.cpp, + src/osgPlugins/zip/ZipArchive.cpp, src/osgPlugins/zip/unzip.cpp, + src/osgPlugins/zip/unzip.h, + src/osgPresentation/AnimationMaterial.cpp, + src/osgPresentation/CompileSlideCallback.cpp, + src/osgPresentation/PickEventHandler.cpp, + src/osgPresentation/SlideEventHandler.cpp, + src/osgPresentation/SlideShowConstructor.cpp, + src/osgQt/GraphicsWindowQt.cpp, + src/osgQt/QFontImplementation.cpp, + src/osgQt/QGraphicsViewAdapter.cpp, + src/osgShadow/ConvexPolyhedron.cpp, + src/osgShadow/DebugShadowMap.cpp, + src/osgShadow/LightSpacePerspectiveShadowMap.cpp, + src/osgShadow/MinimalCullBoundsShadowMap.cpp, + src/osgShadow/MinimalDrawBoundsShadowMap.cpp, + src/osgShadow/MinimalShadowMap.cpp, + src/osgShadow/OccluderGeometry.cpp, + src/osgShadow/ParallelSplitShadowMap.cpp, + src/osgShadow/ShadowMap.cpp, src/osgShadow/ShadowTechnique.cpp, + src/osgShadow/ShadowTexture.cpp, src/osgShadow/ShadowVolume.cpp, + src/osgShadow/ShadowedScene.cpp, + src/osgShadow/StandardShadowMap.cpp, src/osgShadow/Version.cpp, + src/osgShadow/ViewDependentShadowMap.cpp, + src/osgShadow/ViewDependentShadowTechnique.cpp, + src/osgSim/BlinkSequence.cpp, src/osgSim/DOFTransform.cpp, + src/osgSim/ElevationSlice.cpp, src/osgSim/HeightAboveTerrain.cpp, + src/osgSim/Impostor.cpp, src/osgSim/ImpostorSprite.cpp, + src/osgSim/InsertImpostorsVisitor.cpp, src/osgSim/LightPoint.cpp, + src/osgSim/LightPointDrawable.cpp, src/osgSim/LightPointNode.cpp, + src/osgSim/LightPointSpriteDrawable.cpp, + src/osgSim/LineOfSight.cpp, src/osgSim/MultiSwitch.cpp, + src/osgSim/OverlayNode.cpp, src/osgSim/ScalarBar.cpp, + src/osgSim/Sector.cpp, src/osgSim/ShapeAttribute.cpp, + src/osgSim/SphereSegment.cpp, src/osgSim/Version.cpp, + src/osgSim/VisibilityGroup.cpp, + src/osgTerrain/GeometryTechnique.cpp, src/osgTerrain/Layer.cpp, + src/osgTerrain/Locator.cpp, src/osgTerrain/Terrain.cpp, + src/osgTerrain/TerrainTechnique.cpp, + src/osgTerrain/TerrainTile.cpp, src/osgTerrain/Version.cpp, + src/osgText/DefaultFont.cpp, src/osgText/FadeText.cpp, + src/osgText/Font.cpp, src/osgText/Glyph.cpp, + src/osgText/GlyphGeometry.cpp, src/osgText/String.cpp, + src/osgText/Text.cpp, src/osgText/Text3D.cpp, + src/osgText/TextBase.cpp, src/osgText/Version.cpp, + src/osgUtil/CubeMapGenerator.cpp, src/osgUtil/CullVisitor.cpp, + src/osgUtil/DelaunayTriangulator.cpp, + src/osgUtil/DisplayRequirementsVisitor.cpp, + src/osgUtil/DrawElementTypeSimplifier.cpp, + src/osgUtil/EdgeCollector.cpp, src/osgUtil/GLObjectsVisitor.cpp, + src/osgUtil/HalfWayMapGenerator.cpp, + src/osgUtil/HighlightMapGenerator.cpp, + src/osgUtil/IncrementalCompileOperation.cpp, + src/osgUtil/IntersectVisitor.cpp, + src/osgUtil/IntersectionVisitor.cpp, + src/osgUtil/MeshOptimizers.cpp, src/osgUtil/Optimizer.cpp, + src/osgUtil/PerlinNoise.cpp, + src/osgUtil/PositionalStateContainer.cpp, + src/osgUtil/PrintVisitor.cpp, src/osgUtil/RenderBin.cpp, + src/osgUtil/RenderLeaf.cpp, src/osgUtil/RenderStage.cpp, + src/osgUtil/ReversePrimitiveFunctor.cpp, + src/osgUtil/SceneGraphBuilder.cpp, src/osgUtil/SceneView.cpp, + src/osgUtil/ShaderGen.cpp, src/osgUtil/Simplifier.cpp, + src/osgUtil/SmoothingVisitor.cpp, src/osgUtil/StateGraph.cpp, + src/osgUtil/TangentSpaceGenerator.cpp, + src/osgUtil/Tessellator.cpp, + src/osgUtil/TransformAttributeFunctor.cpp, + src/osgUtil/TransformCallback.cpp, + src/osgUtil/TriStripVisitor.cpp, src/osgUtil/UpdateVisitor.cpp, + src/osgUtil/Version.cpp, src/osgViewer/CompositeViewer.cpp, + src/osgViewer/GraphicsWindowCarbon.cpp, + src/osgViewer/GraphicsWindowWin32.cpp, + src/osgViewer/GraphicsWindowX11.cpp, + src/osgViewer/HelpHandler.cpp, + src/osgViewer/PixelBufferCarbon.cpp, + src/osgViewer/PixelBufferWin32.cpp, + src/osgViewer/PixelBufferX11.cpp, src/osgViewer/Renderer.cpp, + src/osgViewer/Scene.cpp, src/osgViewer/StatsHandler.cpp, + src/osgViewer/Version.cpp, src/osgViewer/View.cpp, + src/osgViewer/Viewer.cpp, src/osgViewer/ViewerEventHandlers.cpp, + src/osgVolume/FixedFunctionTechnique.cpp, + src/osgVolume/Locator.cpp, src/osgVolume/Property.cpp, + src/osgVolume/RayTracedTechnique.cpp, src/osgVolume/Version.cpp, + src/osgVolume/Volume.cpp, src/osgVolume/VolumeTechnique.cpp, + src/osgVolume/VolumeTile.cpp, src/osgWidget/Box.cpp, + src/osgWidget/Browser.cpp, src/osgWidget/Canvas.cpp, + src/osgWidget/Frame.cpp, src/osgWidget/Input.cpp, + src/osgWidget/Lua.cpp, src/osgWidget/PdfReader.cpp, + src/osgWidget/StyleManager.cpp, src/osgWidget/Table.cpp, + src/osgWidget/Util.cpp, src/osgWidget/ViewerEventHandlers.cpp, + src/osgWidget/VncClient.cpp, src/osgWidget/Widget.cpp, + src/osgWidget/Window.cpp, src/osgWidget/WindowManager.cpp, + src/osgWrappers/deprecated-dotosg/osg/AnimationPath.cpp, + src/osgWrappers/deprecated-dotosg/osg/AutoTransform.cpp, + src/osgWrappers/deprecated-dotosg/osg/Billboard.cpp, + src/osgWrappers/deprecated-dotosg/osg/Camera.cpp, + src/osgWrappers/deprecated-dotosg/osg/CameraView.cpp, + src/osgWrappers/deprecated-dotosg/osg/Capsule.cpp, + src/osgWrappers/deprecated-dotosg/osg/ClearNode.cpp, + src/osgWrappers/deprecated-dotosg/osg/ClusterCullingCallback.cpp, + src/osgWrappers/deprecated-dotosg/osg/CompositeShape.cpp, + src/osgWrappers/deprecated-dotosg/osg/Cone.cpp, + src/osgWrappers/deprecated-dotosg/osg/ConvexPlanarOccluder.cpp, + src/osgWrappers/deprecated-dotosg/osg/CoordinateSystemNode.cpp, + src/osgWrappers/deprecated-dotosg/osg/Cylinder.cpp, + src/osgWrappers/deprecated-dotosg/osg/Depth.cpp, + src/osgWrappers/deprecated-dotosg/osg/Drawable.cpp, + src/osgWrappers/deprecated-dotosg/osg/FragmentProgram.cpp, + src/osgWrappers/deprecated-dotosg/osg/Geode.cpp, + src/osgWrappers/deprecated-dotosg/osg/Geometry.cpp, + src/osgWrappers/deprecated-dotosg/osg/HeightField.cpp, + src/osgWrappers/deprecated-dotosg/osg/Image.cpp, + src/osgWrappers/deprecated-dotosg/osg/ImageSequence.cpp, + src/osgWrappers/deprecated-dotosg/osg/LOD.cpp, + src/osgWrappers/deprecated-dotosg/osg/Light.cpp, + src/osgWrappers/deprecated-dotosg/osg/LightModel.cpp, + src/osgWrappers/deprecated-dotosg/osg/LightSource.cpp, + src/osgWrappers/deprecated-dotosg/osg/LineStipple.cpp, + src/osgWrappers/deprecated-dotosg/osg/Material.cpp, + src/osgWrappers/deprecated-dotosg/osg/Matrix.cpp, + src/osgWrappers/deprecated-dotosg/osg/MatrixTransform.cpp, + src/osgWrappers/deprecated-dotosg/osg/Node.cpp, + src/osgWrappers/deprecated-dotosg/osg/Object.cpp, + src/osgWrappers/deprecated-dotosg/osg/OccluderNode.cpp, + src/osgWrappers/deprecated-dotosg/osg/OcclusionQueryNode.cpp, + src/osgWrappers/deprecated-dotosg/osg/PagedLOD.cpp, + src/osgWrappers/deprecated-dotosg/osg/PositionAttitudeTransform.cpp, + src/osgWrappers/deprecated-dotosg/osg/Program.cpp, + src/osgWrappers/deprecated-dotosg/osg/Projection.cpp, + src/osgWrappers/deprecated-dotosg/osg/ProxyNode.cpp, + src/osgWrappers/deprecated-dotosg/osg/Sequence.cpp, + src/osgWrappers/deprecated-dotosg/osg/Shader.cpp, + src/osgWrappers/deprecated-dotosg/osg/ShapeDrawable.cpp, + src/osgWrappers/deprecated-dotosg/osg/Sphere.cpp, + src/osgWrappers/deprecated-dotosg/osg/StateAttribute.cpp, + src/osgWrappers/deprecated-dotosg/osg/StateSet.cpp, + src/osgWrappers/deprecated-dotosg/osg/Stencil.cpp, + src/osgWrappers/deprecated-dotosg/osg/Switch.cpp, + src/osgWrappers/deprecated-dotosg/osg/TexEnv.cpp, + src/osgWrappers/deprecated-dotosg/osg/TexEnvCombine.cpp, + src/osgWrappers/deprecated-dotosg/osg/TexEnvFilter.cpp, + src/osgWrappers/deprecated-dotosg/osg/TexGen.cpp, + src/osgWrappers/deprecated-dotosg/osg/TexGenNode.cpp, + src/osgWrappers/deprecated-dotosg/osg/TexMat.cpp, + src/osgWrappers/deprecated-dotosg/osg/Texture.cpp, + src/osgWrappers/deprecated-dotosg/osg/Texture1D.cpp, + src/osgWrappers/deprecated-dotosg/osg/Texture2D.cpp, + src/osgWrappers/deprecated-dotosg/osg/Texture3D.cpp, + src/osgWrappers/deprecated-dotosg/osg/TextureCubeMap.cpp, + src/osgWrappers/deprecated-dotosg/osg/TextureRectangle.cpp, + src/osgWrappers/deprecated-dotosg/osg/TransferFunction.cpp, + src/osgWrappers/deprecated-dotosg/osg/Uniform.cpp, + src/osgWrappers/deprecated-dotosg/osgAnimation/Matrix.cpp, + src/osgWrappers/deprecated-dotosg/osgAnimation/ReaderWriter.cpp, + src/osgWrappers/deprecated-dotosg/osgAnimation/StackedTransform.cpp, + src/osgWrappers/deprecated-dotosg/osgAnimation/UpdateMaterial.cpp, + src/osgWrappers/deprecated-dotosg/osgAnimation/UpdateMatrixTransform.cpp, + src/osgWrappers/deprecated-dotosg/osgFX/IO_AnisotropicLighting.cpp, + src/osgWrappers/deprecated-dotosg/osgFX/IO_BumpMapping.cpp, + src/osgWrappers/deprecated-dotosg/osgFX/IO_Cartoon.cpp, + src/osgWrappers/deprecated-dotosg/osgFX/IO_MultiTextureControl.cpp, + src/osgWrappers/deprecated-dotosg/osgFX/IO_Scribe.cpp, + src/osgWrappers/deprecated-dotosg/osgFX/IO_SpecularHighlights.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_AngularDampingOperator.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_BounceOperator.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_BoxPlacer.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_ConstantRateCounter.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_DampingOperator.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_DomainOperator.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_Emitter.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_ExplosionOperator.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_FluidFrictionOperator.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_FluidProgram.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_ModularEmitter.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_MultiSegmentPlacer.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_OrbitOperator.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_Particle.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_ParticleEffect.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_ParticleProcessor.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_ParticleSystem.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_ParticleSystemUpdater.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_RadialShooter.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_SectorPlacer.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_SinkOperator.cpp, + src/osgWrappers/deprecated-dotosg/osgParticle/IO_VariableRateCounter.cpp, + src/osgWrappers/deprecated-dotosg/osgShadow/ShadowedScene.cpp, + src/osgWrappers/deprecated-dotosg/osgSim/IO_DOFTransform.cpp, + src/osgWrappers/deprecated-dotosg/osgSim/IO_MultiSwitch.cpp, + src/osgWrappers/deprecated-dotosg/osgSim/IO_Sector.cpp, + src/osgWrappers/deprecated-dotosg/osgSim/IO_ShapeAttribute.cpp, + src/osgWrappers/deprecated-dotosg/osgTerrain/CompositeLayer.cpp, + src/osgWrappers/deprecated-dotosg/osgTerrain/HeightFieldLayer.cpp, + src/osgWrappers/deprecated-dotosg/osgTerrain/ImageLayer.cpp, + src/osgWrappers/deprecated-dotosg/osgTerrain/Layer.cpp, + src/osgWrappers/deprecated-dotosg/osgTerrain/Locator.cpp, + src/osgWrappers/deprecated-dotosg/osgTerrain/SwitchLayer.cpp, + src/osgWrappers/deprecated-dotosg/osgTerrain/TerrainTile.cpp, + src/osgWrappers/deprecated-dotosg/osgText/IO_Text.cpp, + src/osgWrappers/deprecated-dotosg/osgText/IO_Text3D.cpp, + src/osgWrappers/deprecated-dotosg/osgText/IO_TextBase.cpp, + src/osgWrappers/deprecated-dotosg/osgViewer/CompositeViewer.cpp, + src/osgWrappers/deprecated-dotosg/osgViewer/View.cpp, + src/osgWrappers/deprecated-dotosg/osgVolume/CompositeProperty.cpp, + src/osgWrappers/deprecated-dotosg/osgVolume/ImageLayer.cpp, + src/osgWrappers/deprecated-dotosg/osgVolume/ScalarProperty.cpp, + src/osgWrappers/deprecated-dotosg/osgVolume/SwitchProperty.cpp, + src/osgWrappers/deprecated-dotosg/osgVolume/Volume.cpp, + src/osgWrappers/deprecated-dotosg/osgVolume/VolumeTile.cpp, + src/osgWrappers/deprecated-dotosg/osgWidget/Box.cpp, + src/osgWrappers/deprecated-dotosg/osgWidget/EmbeddedWindow.cpp, + src/osgWrappers/deprecated-dotosg/osgWidget/Frame.cpp, + src/osgWrappers/deprecated-dotosg/osgWidget/Input.cpp, + src/osgWrappers/deprecated-dotosg/osgWidget/Label.cpp, + src/osgWrappers/deprecated-dotosg/osgWidget/Table.cpp, + src/osgWrappers/deprecated-dotosg/osgWidget/Widget.cpp, + src/osgWrappers/deprecated-dotosg/osgWidget/WindowManager.cpp, + src/osgWrappers/serializers/osg/AlphaFunc.cpp, + src/osgWrappers/serializers/osg/AnimationPath.cpp, + src/osgWrappers/serializers/osg/AutoTransform.cpp, + src/osgWrappers/serializers/osg/Billboard.cpp, + src/osgWrappers/serializers/osg/BlendEquation.cpp, + src/osgWrappers/serializers/osg/Camera.cpp, + src/osgWrappers/serializers/osg/CameraView.cpp, + src/osgWrappers/serializers/osg/ClipNode.cpp, + src/osgWrappers/serializers/osg/Depth.cpp, + src/osgWrappers/serializers/osg/Fog.cpp, + src/osgWrappers/serializers/osg/Geometry.cpp, + src/osgWrappers/serializers/osg/HeightField.cpp, + src/osgWrappers/serializers/osg/ImageSequence.cpp, + src/osgWrappers/serializers/osg/ImageStream.cpp, + src/osgWrappers/serializers/osg/LOD.cpp, + src/osgWrappers/serializers/osg/LightModel.cpp, + src/osgWrappers/serializers/osg/LightSource.cpp, + src/osgWrappers/serializers/osg/Material.cpp, + src/osgWrappers/serializers/osg/Multisample.cpp, + src/osgWrappers/serializers/osg/Node.cpp, + src/osgWrappers/serializers/osg/Object.cpp, + src/osgWrappers/serializers/osg/PagedLOD.cpp, + src/osgWrappers/serializers/osg/PolygonMode.cpp, + src/osgWrappers/serializers/osg/ProxyNode.cpp, + src/osgWrappers/serializers/osg/Sequence.cpp, + src/osgWrappers/serializers/osg/Shader.cpp, + src/osgWrappers/serializers/osg/StateSet.cpp, + src/osgWrappers/serializers/osg/Stencil.cpp, + src/osgWrappers/serializers/osg/TessellationHints.cpp, + src/osgWrappers/serializers/osg/TexEnv.cpp, + src/osgWrappers/serializers/osg/TexGen.cpp, + src/osgWrappers/serializers/osg/TexGenNode.cpp, + src/osgWrappers/serializers/osg/Texture.cpp, + src/osgWrappers/serializers/osg/TextureCubeMap.cpp, + src/osgWrappers/serializers/osg/Uniform.cpp, + src/osgWrappers/serializers/osg/ValueObject.cpp, + src/osgWrappers/serializers/osgAnimation/Animation.cpp, + src/osgWrappers/serializers/osgAnimation/MorphGeometry.cpp, + src/osgWrappers/serializers/osgAnimation/RigGeometry.cpp, + src/osgWrappers/serializers/osgManipulator/Dragger.cpp, + src/osgWrappers/serializers/osgParticle/DomainOperator.cpp, + src/osgWrappers/serializers/osgParticle/Particle.cpp, + src/osgWrappers/serializers/osgParticle/ParticleProcessor.cpp, + src/osgWrappers/serializers/osgParticle/ParticleSystem.cpp, + src/osgWrappers/serializers/osgParticle/SinkOperator.cpp, + src/osgWrappers/serializers/osgShadow/MinimalShadowMap.cpp, + src/osgWrappers/serializers/osgShadow/ParallelSplitShadowMap.cpp, + src/osgWrappers/serializers/osgShadow/ShadowMap.cpp, + src/osgWrappers/serializers/osgShadow/ShadowVolume.cpp, + src/osgWrappers/serializers/osgShadow/StandardShadowMap.cpp, + src/osgWrappers/serializers/osgSim/DOFTransform.cpp, + src/osgWrappers/serializers/osgSim/LightPointNode.cpp, + src/osgWrappers/serializers/osgSim/MultiSwitch.cpp, + src/osgWrappers/serializers/osgSim/OverlayNode.cpp, + src/osgWrappers/serializers/osgSim/ScalarBar.cpp, + src/osgWrappers/serializers/osgTerrain/ImageLayer.cpp, + src/osgWrappers/serializers/osgTerrain/Layer.cpp, + src/osgWrappers/serializers/osgTerrain/Locator.cpp, + src/osgWrappers/serializers/osgTerrain/TerrainTile.cpp, + src/osgWrappers/serializers/osgText/Text.cpp, + src/osgWrappers/serializers/osgText/TextBase.cpp, + src/osgWrappers/serializers/osgVolume/ScalarProperty.cpp, + src/osgWrappers/serializers/osgVolume/VolumeTile.cpp: Ran script + to remove trailing spaces and tabs + +2012-03-21 16:02 robert + + * include/osg/GL: For all OSG_GL*_FEATURE #defines changed 1's to + true and 0's to false. + +2012-03-21 14:08 robert + + * src/osgViewer/GraphicsWindowWin32.cpp: From David Callu, "just a + typo fix that break the compilation under windows" + +2012-03-21 11:36 robert + + * include/osg/GraphicsContext, src/osg/GraphicsContext.cpp, + src/osgViewer/GraphicsWindowWin32.cpp: Added + Traits::getContextVersion(uint,uint) + +2012-03-21 11:26 robert + + * CMakeLists.txt, include/osg/Version: Updated version number + +2012-03-20 12:01 robert + + * src/osgViewer/PixelBufferCocoa.mm: Removed inappropriate warning + +2012-03-20 11:18 robert + + * src/osgPlugins/dxf/dxfEntity.cpp: Replaced && with & to address + error in handling bitmask + +2012-03-19 09:49 robert + + * src/osgPlugins/ive/CMakeLists.txt, + src/osgPlugins/ive/DataInputStream.cpp, + src/osgPlugins/ive/DataOutputStream.cpp, + src/osgPlugins/ive/StencilTwoSided.cpp, + src/osgPlugins/ive/StencilTwoSided.h: From Lukasz Izdebski, Added + StencilTwoSided support to ive plugin + +2012-03-16 13:22 robert + + * src/osgPlugins/ive/LOD.cpp: Fixed the order of setting of + CenterMode + +2012-03-14 16:42 robert + + * src/osgShadow/ViewDependentShadowMap.cpp: From Wang Rui, "I'd + like to submit a slightly modified version of the + ViewDependentShadowMap. It includes two fixes: one is in + ComputeLightSpaceBounds::update(), which changes the statement + "if (v.z()<0.0f)" to "if (v.z()<-1.0f)" as clipping space + coordinates should be transformed to [-1, 1] and should not be + discarded unless they go beyond the range; the other is in + ViewDependentShadowMap::computeShadowCameraSettings(), in which I + changed the line: + viewMatrix.makeLookAt(frustum.center+positionedLight.lightDir*zMin, + frustum.center, lightUp); + to + viewMatrix.makeLookAt(frustum.center+positionedLight.lightDir*zMin, + frustum.center+positionedLight.lightDir*zMax, lightUp); + + The reason I've done such a change is that for huge scenes like a + city on the earth, the values of frustum.center can be extremely + large, but zMin may be very small (e.g., when model depth in + light coords equals the model radius by chance) in some cases so + the result of (eye - center) might jiggle while moving around the + shadow scene and thus make the shadow map suddenly disappear some + time. The small change here also considers the effect of zMax to + avoid such problems. + + " + +2012-03-12 14:22 robert + + * src/osgViewer/Scene.cpp: Moved static initializers into global + scope to prevent problems with using exit(). + +2012-03-11 22:05 cedricpinson + + * include/osgAnimation/StackedMatrixElement, + include/osgAnimation/StackedQuaternionElement, + include/osgAnimation/StackedRotateAxisElement, + include/osgAnimation/StackedScaleElement, + include/osgAnimation/StackedTransform, + include/osgAnimation/StackedTransformElement, + include/osgAnimation/StackedTranslateElement, + src/osgAnimation/StackedMatrixElement.cpp, + src/osgAnimation/StackedQuaternionElement.cpp, + src/osgAnimation/StackedRotateAxisElement.cpp, + src/osgAnimation/StackedScaleElement.cpp, + src/osgAnimation/StackedTransform.cpp, + src/osgAnimation/StackedTranslateElement.cpp: Changed + osgAnimation::StackedTransform::update(t). It can now be used for + custom usage + +2012-03-09 13:16 robert + + * AUTHORS.txt, ChangeLog: Updated ChangeLog and AUTHORS file for + 3.1.1 dev release + 2012-03-09 10:20 robert * ChangeLog, include/osgManipulator/Projector,