closes https://github.com/assimp/assimp/issues/3398: Add support for embedded textures

This commit is contained in:
Kim Kulling
2021-08-12 21:13:07 +02:00
parent a96e7e6e2b
commit 4b1ff645e3
18 changed files with 1006 additions and 597 deletions

View File

@@ -162,7 +162,7 @@ void ObjFileImporter::InternReadFile(const std::string &file, aiScene *pScene, I
// ------------------------------------------------------------------------------------------------
// Create the data from parsed obj-file
void ObjFileImporter::CreateDataFromImport(const ObjFile::Model *pModel, aiScene *pScene) {
if (0L == pModel) {
if (nullptr == pModel) {
return;
}