------------------------------------------------------------------------------
| 551 | |
| 552 | // ------------------------------------------------------------------------------ |
| 553 | int Assimp_TestBatchLoad(const char* const* params, unsigned int num) { |
| 554 | for(unsigned int i = 0; i < num; ++i) { |
| 555 | globalImporter->ReadFile(params[i],aiProcessPreset_TargetRealtime_MaxQuality); |
| 556 | // we're totally silent. scene destructs automatically. |
| 557 | } |
| 558 | return AssimpCmdError::Success; |
| 559 | } |