------------------------------------------------------------------------------------------------ Get a list of all file extensions supported by ASSIMP
| 497 | // ------------------------------------------------------------------------------------------------ |
| 498 | // Get a list of all file extensions supported by ASSIMP |
| 499 | void aiGetExtensionList(aiString *szOut) { |
| 500 | ai_assert(nullptr != szOut); |
| 501 | ASSIMP_BEGIN_EXCEPTION_REGION(); |
| 502 | |
| 503 | // FIXME: no need to create a temporary Importer instance just for that .. |
| 504 | Assimp::Importer tmp; |
| 505 | tmp.GetExtensionList(*szOut); |
| 506 | |
| 507 | ASSIMP_END_EXCEPTION_REGION(void); |
| 508 | } |
| 509 | |
| 510 | // ------------------------------------------------------------------------------------------------ |
| 511 | // Get the memory requirements for a particular import. |
no test coverage detected