MCPcopy Create free account
hub / github.com/assimp/assimp / aiGetExtensionList

Function aiGetExtensionList

code/Common/Assimp.cpp:499–508  ·  view source on GitHub ↗

------------------------------------------------------------------------------------------------ Get a list of all file extensions supported by ASSIMP

Source from the content-addressed store, hash-verified

497// ------------------------------------------------------------------------------------------------
498// Get a list of all file extensions supported by ASSIMP
499void 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.

Callers 2

MakeFileAssociationsFunction · 0.85
OpenAssetFunction · 0.85

Calls 1

GetExtensionListMethod · 0.45

Tested by

no test coverage detected