From d09df8cc07ea81fce3e43332b72d6fabfaa95a72 Mon Sep 17 00:00:00 2001 From: Alexis Breust Date: Thu, 14 Dec 2017 16:18:17 +0100 Subject: [PATCH] Fixed leftover log --- code/Exporter.cpp | 2 +- code/glTF2AssetWriter.inl | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/code/Exporter.cpp b/code/Exporter.cpp index cb496490f..eebecd859 100644 --- a/code/Exporter.cpp +++ b/code/Exporter.cpp @@ -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 diff --git a/code/glTF2AssetWriter.inl b/code/glTF2AssetWriter.inl index aaef7bccb..9734dc7c8 100644 --- a/code/glTF2AssetWriter.inl +++ b/code/glTF2AssetWriter.inl @@ -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;