| 54 | namespace Assimp { |
| 55 | |
| 56 | void ExportSceneAssbin(const char *pFile, IOSystem *pIOSystem, const aiScene *pScene, const ExportProperties * /*pProperties*/) { |
| 57 | DumpSceneToAssbin( |
| 58 | pFile, |
| 59 | "\0", // no command(s). |
| 60 | pIOSystem, |
| 61 | pScene, |
| 62 | false, // shortened? |
| 63 | false); // compressed? |
| 64 | } |
| 65 | } // end of namespace Assimp |
| 66 | |
| 67 | #endif // ASSIMP_BUILD_NO_ASSBIN_EXPORTER |
nothing calls this directly
no test coverage detected