summaryrefslogtreecommitdiff
path: root/src/3rdparty/assimp/code/XFileImporter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/code/XFileImporter.h')
-rw-r--r--src/3rdparty/assimp/code/XFileImporter.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/3rdparty/assimp/code/XFileImporter.h b/src/3rdparty/assimp/code/XFileImporter.h
index cefb68601..39f3d827a 100644
--- a/src/3rdparty/assimp/code/XFileImporter.h
+++ b/src/3rdparty/assimp/code/XFileImporter.h
@@ -99,8 +99,7 @@ protected:
* @param pData The imported data in the internal temporary
* representation.
*/
- void CreateDataRepresentationFromImport( aiScene* pScene,
- const XFile::Scene* pData);
+ void CreateDataRepresentationFromImport( aiScene* pScene, XFile::Scene* pData);
// -------------------------------------------------------------------
/** Recursively creates scene nodes from the imported hierarchy.
@@ -139,15 +138,11 @@ protected:
* @param pScene The scene to hold the converted materials.
* @param pMaterials The material array to convert.
*/
- void ConvertMaterials( aiScene* pScene,
- const std::vector<XFile::Material>& pMaterials);
+ void ConvertMaterials( aiScene* pScene, std::vector<XFile::Material>& pMaterials);
protected:
/** Buffer to hold the loaded file */
std::vector<char> mBuffer;
-
- /** Imported materials: index in the scene's material list by name */
- std::map<std::string, unsigned int> mImportedMats;
};
} // end of namespace Assimp