From 3d3534dda95aea23922e6841dfb9bedd3a42a2ec Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 21 Apr 2002 10:11:03 +0000 Subject: [PATCH] Updated Versions, and NEWS file to reflect impending release of 0.8.45. --- NEWS | 34 ++++++++++++++++++++++++++++++++++ src/osg/Version.cpp | 2 +- src/osgDB/Version.cpp | 2 +- src/osgGLUT/Version.cpp | 2 +- src/osgText/Version.cpp | 2 +- src/osgUtil/Version.cpp | 2 +- 6 files changed, 39 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 3dc88ee6e..5d3e2d355 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,40 @@ OSG News (most significant items from ChangeLog) ================================================ + +22nd April 2002 - osg-0.8.45.tar.gz + + >>> Support added for Solaris, texture cube mapping & muliple projections. + + The OpenSceneGraph now has new Makefile systems which supports all Unix + compilation including the new addition to the familiy - Solaris! + + Support has also been added for OpenGL's texture cube mapping which + is ideal for accurate environmental reflections and much more. + + The scene graph has been extended to allow multiple projection (via + the new osg::Projection node) and viewports within one scene graphs, + this makes it much easier to set up head up displays, and we have + an example to demonstrate how easy it is - osghud. + + The osgUtil::CullVisitor and osgUtil::SceneView has been revamped + removing the dependancy on osg::Camera, which is now simply an + option for SceneView rather than a requirement. This allows users + to set the camera entirely with the scene graph or create their own + camera classes and use them with SceneView. The existing osg::Camera + has also been simplified as support for setting projection and + modelview matrices have been moved out to the cull traversal. + + Several sets of node callbacks have been added, including a Cull + NodeCallback on each Node, ComputeTransformCallback on Transform + Nodes, EvaluateLODCallback on LOD nodes, ComputeBillboardCallback + on Billboard nodes. These make it my easier to customize the + scene graphs behavior at runtime. + + All in all, the OpenSceneGraph is now more portable, easier to + customize and cleaner. Beta release and 1.0 is now not far away! + + 24th February 2002 - osg-0.8.44.tar.gz >>> Support added for Mac OSX, Cygwin and MinGW, and new TerraPage loader. diff --git a/src/osg/Version.cpp b/src/osg/Version.cpp index 8ccc270a8..a964c5db2 100644 --- a/src/osg/Version.cpp +++ b/src/osg/Version.cpp @@ -2,7 +2,7 @@ const char* osgGetVersion() { - return "0.8.44"; + return "0.8.45"; } diff --git a/src/osgDB/Version.cpp b/src/osgDB/Version.cpp index d04cf022b..ad4e0e5ab 100644 --- a/src/osgDB/Version.cpp +++ b/src/osgDB/Version.cpp @@ -2,7 +2,7 @@ const char* osgDBGetVersion() { - return "0.8.44"; + return "0.8.45"; } diff --git a/src/osgGLUT/Version.cpp b/src/osgGLUT/Version.cpp index a7ebdff1c..de8284729 100755 --- a/src/osgGLUT/Version.cpp +++ b/src/osgGLUT/Version.cpp @@ -2,7 +2,7 @@ const char* osgGLUTGetVersion() { - return "0.8.44"; + return "0.8.45"; } diff --git a/src/osgText/Version.cpp b/src/osgText/Version.cpp index 286acac4f..f4d80205f 100644 --- a/src/osgText/Version.cpp +++ b/src/osgText/Version.cpp @@ -2,7 +2,7 @@ const char* osgTextGetVersion() { - return "0.8.44"; + return "0.8.45"; } diff --git a/src/osgUtil/Version.cpp b/src/osgUtil/Version.cpp index 37c98b827..00bce800f 100644 --- a/src/osgUtil/Version.cpp +++ b/src/osgUtil/Version.cpp @@ -2,7 +2,7 @@ const char* osgUtilGetVersion() { - return "0.8.44"; + return "0.8.45"; }