From Paul Martz,"Several misc changes, but the major fixes include:

* Support for Vec4ubArray for color data
 * Support for material transparency
 
Thanks to Neil Hughes, Jason Daly, yourself, and others for testing and reporting issues."
This commit is contained in:
Robert Osfield
2008-04-11 13:43:11 +00:00
parent 76e0198007
commit d0a2bf87f3
8 changed files with 267 additions and 105 deletions

View File

@@ -139,15 +139,6 @@ DataOutputStream::writeID( const std::string& val )
}
void
DataOutputStream::writeColor32( const osg::Vec4f& val )
{
writeUInt8( val.a() );
writeUInt8( val.b() );
writeUInt8( val.g() );
writeUInt8( val.r() );
}
void
DataOutputStream::writeVec2f( const osg::Vec2f& val )
{