Fixed handling of NULL entries in osg::Geometry TexCoordArrayList and VertexAttribArrayList.
git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14715 16af8721-9629-0410-8352-f15c8da7e697
This commit is contained in:
@@ -585,7 +585,10 @@ public:
|
||||
if ( os.isBinary() )
|
||||
{
|
||||
os << hasObject;
|
||||
os.writeObject( value );
|
||||
if (hasObject)
|
||||
{
|
||||
os.writeObject( value );
|
||||
}
|
||||
}
|
||||
else if ( ParentType::_defaultValue!=value )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user