assimp/code
Mike Samsonov 971ba308b3 Merged PR 2811682: buffer grow changes and large files support
Buffer grow changes:
The exporting of relatevely large data could take a few days, because reallocation of a buffer every time for a few new bytes is overkill. I've introduced standard capacity member for the buffer and growth it by 1.5 times every time. That helps a lot, descrease exporting to a minute (from a few days).

Large file support:
glTF is a json file, all lengths and offsets don't have a type, just numbers, but code was always reading it as uint32, this doesn't work for files bigger than int32 (almost all files we have as an example). So, I've changed it to be reading as size_t. Specification doesn't specify the type for it, so it's not against spec.
2019-02-04 15:16:28 +00:00
..
Importer Update copyrights. 2019-01-30 09:41:39 +01:00
res Fix missing includes. 2017-03-05 15:05:40 +01:00
.editorconfig Implemented: Add editor config for source code 2015-06-28 15:50:57 -06:00
3DSConverter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
3DSExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
3DSExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
3DSHelper.h Update copyrights. 2019-01-30 09:41:39 +01:00
3DSLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
3DSLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
3MFXmlTags.h Update copyrights. 2019-01-30 09:41:39 +01:00
ACLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ACLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
AMFImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
AMFImporter.hpp Update copyrights. 2019-01-30 09:41:39 +01:00
AMFImporter_Geometry.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
AMFImporter_Macro.hpp Update copyrights. 2019-01-30 09:41:39 +01:00
AMFImporter_Material.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
AMFImporter_Node.hpp Update copyrights. 2019-01-30 09:41:39 +01:00
AMFImporter_Postprocess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ASELoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ASELoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
ASEParser.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ASEParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
AssbinExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
AssbinExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
AssbinLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
AssbinLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
Assimp.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
AssimpCExport.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
AssxmlExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
AssxmlExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
B3DImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
B3DImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
BVHLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
BVHLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
BaseImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
BaseProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
BaseProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
Bitmap.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderBMesh.cpp Address warnings on Clang 3.9 caused by having a static data member in a class template. 2017-10-05 23:55:10 +11:00
BlenderBMesh.h Successful lib build, unit testing still WIP 2018-01-05 16:18:33 -08:00
BlenderCustomData.cpp Add a check for the resule of a dynamic cast. 2018-12-29 21:27:20 +01:00
BlenderCustomData.h usage of dynamic_cast instead of static_cast 2018-06-10 10:35:15 +02:00
BlenderDNA.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderDNA.h Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderDNA.inl Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderIntermediate.h Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderModifier.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderModifier.h Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderScene.cpp Amended the "Key" for the database ReadField 2018-10-16 00:25:44 +08:00
BlenderScene.h Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderSceneGen.h issue_1973 2018-06-09 15:45:09 +02:00
BlenderTessellator.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
BlenderTessellator.h Update copyrights. 2019-01-30 09:41:39 +01:00
C4DImporter.cpp Successful lib build, unit testing still WIP 2018-01-05 16:18:33 -08:00
C4DImporter.h Successful lib build, unit testing still WIP 2018-01-05 16:18:33 -08:00
CInterfaceIOWrapper.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
CInterfaceIOWrapper.h Update copyrights. 2019-01-30 09:41:39 +01:00
CMakeLists.txt Update copyrights. 2019-01-30 09:41:39 +01:00
COBLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
COBLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
COBScene.h Update copyrights. 2019-01-30 09:41:39 +01:00
CSMLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
CSMLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
CalcTangentsProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
CalcTangentsProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
ColladaExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ColladaExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
ColladaHelper.h Update copyrights. 2019-01-30 09:41:39 +01:00
ColladaLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ColladaLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
ColladaParser.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ColladaParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
ComputeUVMappingProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ComputeUVMappingProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
ConvertToLHProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ConvertToLHProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
CreateAnimMesh.cpp Successful lib build, unit testing still WIP 2018-01-05 16:18:33 -08:00
D3MFExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
D3MFExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
D3MFImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
D3MFImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
D3MFOpcPackage.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
D3MFOpcPackage.h Update copyrights. 2019-01-30 09:41:39 +01:00
DXFHelper.h Update copyrights. 2019-01-30 09:41:39 +01:00
DXFLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
DXFLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
DeboneProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
DeboneProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
DefaultIOStream.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
DefaultIOSystem.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
DefaultLogger.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
DefaultProgressHandler.h Update copyrights. 2019-01-30 09:41:39 +01:00
DropFaceNormalsProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
DropFaceNormalsProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
EmbedTexturesProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
EmbedTexturesProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
Exporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXAnimation.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXBinaryTokenizer.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXCommon.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXCompileConfig.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXConverter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXConverter.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXDeformer.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXDocument.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXDocument.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXDocumentUtil.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXDocumentUtil.h Replaced "../Include/" include from FBXDocumentUtil.h 2018-10-06 14:55:20 +02:00
FBXExportNode.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXExportNode.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXExportProperty.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXExportProperty.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXImportSettings.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXMaterial.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXMeshGeometry.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXMeshGeometry.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXModel.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXNodeAttribute.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXParser.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXProperties.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXProperties.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXTokenizer.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXTokenizer.h Update copyrights. 2019-01-30 09:41:39 +01:00
FBXUtil.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FBXUtil.h Update copyrights. 2019-01-30 09:41:39 +01:00
FIReader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FIReader.hpp Update copyrights. 2019-01-30 09:41:39 +01:00
FileLogStream.h Update copyrights. 2019-01-30 09:41:39 +01:00
FileSystemFilter.h closes https://github.com/assimp/assimp/issues/2056: use correc exception type in MMD-loader. 2018-07-18 20:29:05 +02:00
FindDegenerates.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FindDegenerates.h Update copyrights. 2019-01-30 09:41:39 +01:00
FindInstancesProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FindInstancesProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
FindInvalidDataProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FindInvalidDataProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
FixNormalsStep.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
FixNormalsStep.h Update copyrights. 2019-01-30 09:41:39 +01:00
GenFaceNormalsProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
GenFaceNormalsProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
GenVertexNormalsProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
GenVertexNormalsProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
HMPFileData.h Update copyrights. 2019-01-30 09:41:39 +01:00
HMPLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
HMPLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
HalfLifeFileData.h Update copyrights. 2019-01-30 09:41:39 +01:00
IFF.h Successful lib build, unit testing still WIP 2018-01-05 16:18:33 -08:00
IRRLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
IRRLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
IRRMeshLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
IRRMeshLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
IRRShared.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
IRRShared.h Fix typos on code using codespell 2018-05-13 16:35:03 +02:00
Importer.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
Importer.h Update copyrights. 2019-01-30 09:41:39 +01:00
ImporterRegistry.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ImproveCacheLocality.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ImproveCacheLocality.h Update copyrights. 2019-01-30 09:41:39 +01:00
JoinVerticesProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
JoinVerticesProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
LWOAnimation.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
LWOAnimation.h Update copyrights. 2019-01-30 09:41:39 +01:00
LWOBLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
LWOFileData.h Update copyrights. 2019-01-30 09:41:39 +01:00
LWOLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
LWOLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
LWOMaterial.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
LWSLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
LWSLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
LimitBoneWeightsProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
LimitBoneWeightsProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
MD2FileData.h Update copyrights. 2019-01-30 09:41:39 +01:00
MD2Loader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MD2Loader.h Update copyrights. 2019-01-30 09:41:39 +01:00
MD2NormalTable.h Update copyrights. 2019-01-30 09:41:39 +01:00
MD3FileData.h Update copyrights. 2019-01-30 09:41:39 +01:00
MD3Loader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MD3Loader.h Update copyrights. 2019-01-30 09:41:39 +01:00
MD4FileData.h Replaced "../Include/" include from MD4FileData.h 2018-10-06 15:15:43 +02:00
MD5Loader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MD5Loader.h Update copyrights. 2019-01-30 09:41:39 +01:00
MD5Parser.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MD5Parser.h Update copyrights. 2019-01-30 09:41:39 +01:00
MDCFileData.h Update copyrights. 2019-01-30 09:41:39 +01:00
MDCLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MDCLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
MDCNormalTable.h Refactor: Expand tabs to 4 spaces 2015-06-28 16:04:15 -06:00
MDLDefaultColorMap.h Update copyrights. 2019-01-30 09:41:39 +01:00
MDLFileData.h Update copyrights. 2019-01-30 09:41:39 +01:00
MDLLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MDLLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
MDLMaterialLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MMDCpp14.h Update copyrights. 2019-01-30 09:41:39 +01:00
MMDImporter.cpp Update MMDImporter.cpp 2018-09-22 12:46:38 +02:00
MMDImporter.h Successful lib build, unit testing still WIP 2018-01-05 16:18:33 -08:00
MMDPmdParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
MMDPmxParser.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MMDPmxParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
MMDVmdParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
MS3DLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MS3DLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
MakeVerboseFormat.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MakeVerboseFormat.h Update copyrights. 2019-01-30 09:41:39 +01:00
MaterialSystem.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
MaterialSystem.h Update copyrights. 2019-01-30 09:41:39 +01:00
NDOLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
NDOLoader.h Successful lib build, unit testing still WIP 2018-01-05 16:18:33 -08:00
NFFLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
NFFLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
OFFLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OFFLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
ObjExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ObjExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
ObjFileData.h Update copyrights. 2019-01-30 09:41:39 +01:00
ObjFileImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ObjFileImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
ObjFileMtlImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ObjFileMtlImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
ObjFileParser.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ObjFileParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
ObjTools.h Update copyrights. 2019-01-30 09:41:39 +01:00
OgreBinarySerializer.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OgreBinarySerializer.h Update copyrights. 2019-01-30 09:41:39 +01:00
OgreImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OgreImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
OgreMaterial.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OgreParsingUtils.h Update copyrights. 2019-01-30 09:41:39 +01:00
OgreStructs.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OgreStructs.h Update copyrights. 2019-01-30 09:41:39 +01:00
OgreXmlSerializer.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OgreXmlSerializer.h Update copyrights. 2019-01-30 09:41:39 +01:00
OpenGEXExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OpenGEXExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
OpenGEXImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OpenGEXImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
OpenGEXStructs.h Update copyrights. 2019-01-30 09:41:39 +01:00
OptimizeGraph.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OptimizeGraph.h Update copyrights. 2019-01-30 09:41:39 +01:00
OptimizeMeshes.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
OptimizeMeshes.h Update copyrights. 2019-01-30 09:41:39 +01:00
PlyExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
PlyExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
PlyLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
PlyLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
PlyParser.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
PlyParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
PolyTools.h Update copyrights. 2019-01-30 09:41:39 +01:00
PostStepRegistry.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
PretransformVertices.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
PretransformVertices.h Update copyrights. 2019-01-30 09:41:39 +01:00
ProcessHelper.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ProcessHelper.h Update copyrights. 2019-01-30 09:41:39 +01:00
Q3BSPFileData.h Update copyrights. 2019-01-30 09:41:39 +01:00
Q3BSPFileImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
Q3BSPFileImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
Q3BSPFileParser.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
Q3BSPFileParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
Q3BSPZipArchive.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
Q3BSPZipArchive.h Update copyrights. 2019-01-30 09:41:39 +01:00
Q3DLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
Q3DLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
RawLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
RawLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
RemoveComments.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
RemoveRedundantMaterials.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
RemoveRedundantMaterials.h Update copyrights. 2019-01-30 09:41:39 +01:00
RemoveVCProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
RemoveVCProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
SGSpatialSort.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
SIBImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
SIBImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
SMDLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
SMDLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
STEPFile.h Update copyrights. 2019-01-30 09:41:39 +01:00
STLExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
STLExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
STLLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
STLLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
ScaleProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ScaleProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
SceneCombiner.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ScenePreprocessor.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ScenePreprocessor.h Update copyrights. 2019-01-30 09:41:39 +01:00
ScenePrivate.h Update copyrights. 2019-01-30 09:41:39 +01:00
SkeletonMeshBuilder.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
SortByPTypeProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
SortByPTypeProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
SpatialSort.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
SplitByBoneCountProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
SplitByBoneCountProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
SplitLargeMeshes.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
SplitLargeMeshes.h Update copyrights. 2019-01-30 09:41:39 +01:00
StandardShapes.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
StdOStreamLogStream.h Update copyrights. 2019-01-30 09:41:39 +01:00
StepExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
StepExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
Subdivision.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
TargetAnimation.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
TargetAnimation.h Update copyrights. 2019-01-30 09:41:39 +01:00
TerragenLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
TerragenLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
TextureTransform.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
TextureTransform.h Update copyrights. 2019-01-30 09:41:39 +01:00
TriangulateProcess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
TriangulateProcess.h Update copyrights. 2019-01-30 09:41:39 +01:00
UnrealLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
UnrealLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
ValidateDataStructure.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
ValidateDataStructure.h Update copyrights. 2019-01-30 09:41:39 +01:00
Version.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
VertexTriangleAdjacency.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
VertexTriangleAdjacency.h Update copyrights. 2019-01-30 09:41:39 +01:00
Win32DebugLogStream.h Update copyrights. 2019-01-30 09:41:39 +01:00
X3DExporter.cpp Successful lib build, unit testing still WIP 2018-01-05 16:18:33 -08:00
X3DExporter.hpp Fix typos on code using codespell 2018-05-13 16:35:03 +02:00
X3DImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter.hpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Geometry2D.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Geometry3D.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Group.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Light.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Macro.hpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Metadata.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Networking.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Node.hpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Postprocess.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Rendering.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Shape.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DImporter_Texturing.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
X3DVocabulary.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
XFileExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
XFileExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
XFileHelper.h Update copyrights. 2019-01-30 09:41:39 +01:00
XFileImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
XFileImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
XFileParser.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
XFileParser.h Update copyrights. 2019-01-30 09:41:39 +01:00
XGLLoader.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
XGLLoader.h Update copyrights. 2019-01-30 09:41:39 +01:00
assbin_chunks.h Refactor: Expand tabs to 4 spaces 2015-06-28 16:04:15 -06:00
glTF2Asset.h Merged PR 2811682: buffer grow changes and large files support 2019-02-04 15:16:28 +00:00
glTF2Asset.inl Merged PR 2811682: buffer grow changes and large files support 2019-02-04 15:16:28 +00:00
glTF2AssetWriter.h Update copyrights. 2019-01-30 09:41:39 +01:00
glTF2AssetWriter.inl Update copyrights. 2019-01-30 09:41:39 +01:00
glTF2Exporter.cpp Merged PR 2811682: buffer grow changes and large files support 2019-02-04 15:16:28 +00:00
glTF2Exporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
glTF2Importer.cpp Merged PR 2811682: buffer grow changes and large files support 2019-02-04 15:16:28 +00:00
glTF2Importer.h Update copyrights. 2019-01-30 09:41:39 +01:00
glTFAsset.h Merged PR 2811682: buffer grow changes and large files support 2019-02-04 15:16:28 +00:00
glTFAsset.inl Merged PR 2811682: buffer grow changes and large files support 2019-02-04 15:16:28 +00:00
glTFAssetWriter.h Update copyrights. 2019-01-30 09:41:39 +01:00
glTFAssetWriter.inl Update copyrights. 2019-01-30 09:41:39 +01:00
glTFExporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
glTFExporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
glTFImporter.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
glTFImporter.h Update copyrights. 2019-01-30 09:41:39 +01:00
makefile.mingw Successful lib build, unit testing still WIP 2018-01-05 16:18:33 -08:00
scene.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
simd.cpp Update copyrights. 2019-01-30 09:41:39 +01:00
simd.h Update copyrights. 2019-01-30 09:41:39 +01:00