removed vertex color and vertex normal from the capabilities of this format. They are not safe

This commit is contained in:
Paolo Cignoni 2008-03-19 05:21:57 +00:00
parent f9538e9f56
commit 0a8997ef8d
1 changed files with 3 additions and 3 deletions

View File

@ -223,12 +223,12 @@ public:
int capability = 0;
//vert
capability |= Mask::IOM_VERTNORMAL;
capability |= vcg::tri::io::Mask::IOM_VERTCOLOR;
//capability |= Mask::IOM_VERTNORMAL;
//capability |= vcg::tri::io::Mask::IOM_VERTCOLOR;
////wedg
capability |= Mask::IOM_WEDGTEXCOORD;
capability |= Mask::IOM_WEDGNORMAL;
//capability |= Mask::IOM_WEDGNORMAL;
return capability;
}