From c024beadba926fe7873d9c6301df2db41d428493 Mon Sep 17 00:00:00 2001 From: Alexandr Arutjunov Date: Wed, 3 Aug 2016 11:16:30 +0300 Subject: [PATCH] [+] Put information to log about decompressing. --- code/glTFAsset.inl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/glTFAsset.inl b/code/glTFAsset.inl index 60af03ee3..3e644c5c3 100644 --- a/code/glTFAsset.inl +++ b/code/glTFAsset.inl @@ -40,7 +40,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "StringUtils.h" -// Header files, Open3DGC.h, +// Header files, Assimp +#include + +// Header files, Open3DGC. #include namespace glTF { @@ -720,6 +723,7 @@ inline void Mesh::Read(Value& pJSON_Object, Asset& pAsset_Root) if(comp_data == nullptr) throw DeadlyImportError("GLTF: \"Open3DGC-compression\" must has \"compressedData\"."); + Assimp::DefaultLogger::get()->info("GLTF: Decompressing Open3DGC data."); Decode_O3DGC(*comp_data, pAsset_Root); }// if(o3dgc == nullptr) }// if(extensions != nullptr)