updated COLLADA-DOM to the latest bleeding-edge (1.4.1) SVN version of today

This commit is contained in:
ejcoumans
2006-07-26 18:58:09 +00:00
parent 750af5c197
commit 7038e5c736
353 changed files with 21354 additions and 6259 deletions

View File

@@ -13,6 +13,12 @@
#include <dae/daeDom.h>
#include <dom/domFx_depthtarget_common.h>
#include <dae/daeMetaCMPolicy.h>
#include <dae/daeMetaSequence.h>
#include <dae/daeMetaChoice.h>
#include <dae/daeMetaGroup.h>
#include <dae/daeMetaAny.h>
#include <dae/daeMetaElementAttribute.h>
daeElementRef
domFx_depthtarget_common::create(daeInt bytes)
@@ -29,7 +35,6 @@ domFx_depthtarget_common::registerElement()
_Meta = new daeMetaElement;
_Meta->setName( "fx_depthtarget_common" );
_Meta->setStaticPointerAddress(&domFx_depthtarget_common::_Meta);
_Meta->registerConstructor(domFx_depthtarget_common::create);
// Add attribute: _value
@@ -55,6 +60,32 @@ domFx_depthtarget_common::registerElement()
_Meta->appendAttribute(ma);
}
// Add attribute: face
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "face" );
ma->setType( daeAtomicType::get("Fx_surface_face_enum"));
ma->setOffset( daeOffsetOf( domFx_depthtarget_common , attrFace ));
ma->setContainer( _Meta );
ma->setDefault( "POSITIVE_X");
ma->setIsRequired( false );
_Meta->appendAttribute(ma);
}
// Add attribute: mip
{
daeMetaAttribute *ma = new daeMetaAttribute;
ma->setName( "mip" );
ma->setType( daeAtomicType::get("xsNonNegativeInteger"));
ma->setOffset( daeOffsetOf( domFx_depthtarget_common , attrMip ));
ma->setContainer( _Meta );
ma->setDefault( "0");
ma->setIsRequired( false );
_Meta->appendAttribute(ma);
}
// Add attribute: slice
{
daeMetaAttribute *ma = new daeMetaAttribute;