Updated developer release number

This commit is contained in:
Robert Osfield
2013-03-21 16:42:09 +00:00
parent ed35a0a07a
commit dd8d7c2839
4 changed files with 155 additions and 7 deletions

148
ChangeLog
View File

@@ -1,3 +1,151 @@
2013-03-21 16:22 robert
* include/osg/State: Added check against
isVertexBufferObjectSupported() in set*Pointer() methods
2013-03-21 11:35 robert
* examples/osgkeystone/osgkeystone.cpp: Added keystone grid to aid
editing
2013-03-20 14:03 robert
* examples/osgkeystone/osgkeystone.cpp: Added arrow key support.
Added support for using ctrl and shift keys to modulate how
senstive the mouse and key movement is when modifying the
keystone parameters.
2013-03-19 16:43 robert
* examples/osgkeystone/osgkeystone.cpp: Improve corner point
tracking/keystone computation
2013-03-19 12:44 robert
* examples/osgkeystone/osgkeystone.cpp: Added event handle for
interactive setting of keystone variables
2013-03-15 17:35 robert
* examples/osgkeystone/osgkeystone.cpp: Experiments with modifying
the projection matrix to provide keystoning.
2013-03-14 16:24 robert
* examples/CMakeLists.txt, examples/osgkeystone,
examples/osgkeystone/CMakeLists.txt,
examples/osgkeystone/osgkeystone.cpp: Initial skeleton of new
osgkeystone example
2013-03-11 17:16 robert
* src/osg/Group.cpp: From Aurelien Albert, "There is a little bug
in the osg::Group::insertChild method :
If the index is more than the size of _children vector, the new
child is pushed at the end of the vector, but the index value is
unmodified, so an incorrect value is passed to the
"childInserted" method."
2013-02-22 17:42 robert
* src/osgSim/LightPointNode.cpp: From Chris Hanson, " Adds missing
copy for _bbox member variable to copy constructor:
LightPointNode::LightPointNode(const LightPointNode& lpn,const
osg::CopyOp& copyop):
osg::Node(lpn,copyop),
_bbox(lpn._bbox),
_lightPointList(lpn._lightPointList),
_minPixelSize(lpn._minPixelSize),
_maxPixelSize(lpn._maxPixelSize),
_maxVisibleDistance2(lpn._maxVisibleDistance2),
_lightSystem(lpn._lightSystem),
_pointSprites(lpn._pointSprites)
{
}
Lacking this causes _bbox to be uninitialized after LOD changes
when paged databases refer to shared subgraphs.
"
2013-02-13 16:29 robert
* include/osg/SampleMaski, include/osg/StateAttribute,
src/osg/CMakeLists.txt, src/osg/SampleMaski.cpp,
src/osgWrappers/serializers/osg/SampleMaski.cpp: From Lukasz
Izdebski,"added support for gl_SampleMaski."
2013-02-13 16:03 robert
* PlatformSpecifics/Android/AndroidManifest.xml.master.in: From
Jordi Torres, "This error occurs when compiling current OSG with
the NDK >=r8c:
android-ndk-r8d/build/gmsl/__
gmsl:512: *** non-numeric second argument to `wordlist' function:
''. Stop.
This is discussed in this thread[1].
The solution is to add <uses-sdk android:minSdkVersion="8" /> to
the manifest as the OSG library will only run in devices with
Android>=2.2 (Froyo) with API level 8 [2].
The fix does not affect to older sdk's.
Thanks to Jan Ciger for spotting the bug and find a possible
solution. "
2013-02-12 15:44 robert
* include/osg/Math: From Jordi Torres, Android build fix
2013-02-12 15:40 robert
* src/osgPlugins/osc/osc/OscHostEndianness.h: From Jordi Torres,
fix for Android build
2013-02-12 15:18 robert
* src/osgPlugins/osc/OscSendingDevice.cpp,
src/osgPlugins/osc/ReaderWriterOscDevice.cpp: From Stephan Huber,
fixed bug in setting _numMessagesPerEvent and added more debug
information
2013-02-07 19:16 robert
* src/osgPlugins/3ds/ReaderWriter3DS.cpp: From Mike Connell, "3
smaller fixes for the 3DS loader (against trunk)
1. Respect "noMatrixTransforms" option for matrices attached to
meshes, not only those attached to nodes
2. traverse_nodes variable did the exact opposite of it's
description.
3. Always try to load referenced textures, even if we can't find
the files (in order to the the registry's ReadFileCallback have a
stab at it)
"
2013-02-07 11:10 robert
* src/osgDB/InputStream.cpp, src/osgDB/OutputStream.cpp: From
Lukasz Izdebski , "I added write and read numInstances in
PrimitiveSet."
2013-02-07 11:08 robert
* CMakeLists.txt, include/osg/Version: Updated SO version in prep
for serialization foramt change
2013-02-07 08:46 robert
* AUTHORS.txt, ChangeLog, applications/osgversion/Contributors.cpp:
Updated AUTHORS list
2013-02-06 16:04 robert
* src/osgPlugins/OpenFlight/Document.cpp,