Some minor changes in postprocess step order. My fault, I didn't think.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@328 67173fc5-114c-0410-ac8e-9d2fd5bffc1fpull/1/head
parent
4b4526953e
commit
eb761a875f
|
@ -337,6 +337,10 @@ Importer::Importer()
|
||||||
mPostProcessingSteps.push_back( new ValidateDSProcess());
|
mPostProcessingSteps.push_back( new ValidateDSProcess());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if (!defined AI_BUILD_NO_REMOVEVC_PROCESS)
|
||||||
|
mPostProcessingSteps.push_back( new RemoveVCProcess());
|
||||||
|
#endif
|
||||||
|
|
||||||
#if (!defined AI_BUILD_NO_REMOVE_REDUNDANTMATERIALS_PROCESS)
|
#if (!defined AI_BUILD_NO_REMOVE_REDUNDANTMATERIALS_PROCESS)
|
||||||
mPostProcessingSteps.push_back( new RemoveRedundantMatsProcess());
|
mPostProcessingSteps.push_back( new RemoveRedundantMatsProcess());
|
||||||
#endif
|
#endif
|
||||||
|
@ -350,12 +354,6 @@ Importer::Importer()
|
||||||
mPostProcessingSteps.push_back( new FindDegeneratesProcess());
|
mPostProcessingSteps.push_back( new FindDegeneratesProcess());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if (!defined AI_BUILD_NO_REMOVEVC_PROCESS)
|
|
||||||
mPostProcessingSteps.push_back( new RemoveVCProcess());
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef AI_BUILD_NO_GENUVCOORDS_PROCESS
|
#ifndef AI_BUILD_NO_GENUVCOORDS_PROCESS
|
||||||
mPostProcessingSteps.push_back( new ComputeUVMappingProcess());
|
mPostProcessingSteps.push_back( new ComputeUVMappingProcess());
|
||||||
|
|
Loading…
Reference in New Issue