Fixed leftover log

pull/1640/head
Alexis Breust 2017-12-14 16:18:17 +01:00
parent 31a4ccaebb
commit d09df8cc07
2 changed files with 1 additions and 2 deletions

View File

@ -152,7 +152,7 @@ Exporter::ExportFormatEntry gExporters[] =
aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType ),
Exporter::ExportFormatEntry( "gltf2", "GL Transmission Format v. 2", "gltf2", &ExportSceneGLTF2,
aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType ),
Exporter::ExportFormatEntry( "glb2", "GL Transmission Format v. 2", "glb2", &ExportSceneGLB2,
Exporter::ExportFormatEntry( "glb2", "GL Transmission Format v. 2 (binary)", "glb2", &ExportSceneGLB2,
aiProcess_JoinIdenticalVertices | aiProcess_Triangulate | aiProcess_SortByPType ),
#endif

View File

@ -586,7 +586,6 @@ namespace glTF2 {
uint32_t jsonChunkLength = (docBuffer.GetSize() + 3) & ~3; // Round up to next multiple of 4
auto paddingLength = jsonChunkLength - docBuffer.GetSize();
std::cout << paddingLength << std::endl;
GLB_Chunk jsonChunk;
jsonChunk.chunkLength = jsonChunkLength;