Enable unittest for apacity bug for dae files.

This commit is contained in:
Kim Kulling
2016-11-30 15:05:06 +01:00
parent c2deb3e15f
commit 12ea506504
3 changed files with 61 additions and 55 deletions

View File

@@ -163,7 +163,6 @@ Exporter::ExportFormatEntry gExporters[] =
class ExporterPimpl {
public:
ExporterPimpl()
: blob()
, mIOSystem(new Assimp::DefaultIOSystem())
@@ -171,7 +170,7 @@ public:
{
GetPostProcessingStepInstanceList(mPostProcessingSteps);
// grab all builtin exporters
// grab all built-in exporters
mExporters.resize(ASSIMP_NUM_EXPORTERS);
std::copy(gExporters,gExporters+ASSIMP_NUM_EXPORTERS,mExporters.begin());
}