Skip to content

Commit

Permalink
ifdef fixes to fix MSVC warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulshethsc committed Jul 14, 2020
1 parent eea3ba6 commit 1e80ce2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions code/AssetLib/glTF/glTFAsset.inl
Original file line number Diff line number Diff line change
Expand Up @@ -836,8 +836,8 @@ inline void Mesh::Read(Value &pJSON_Object, Asset &pAsset_Root) {

if (json_extensions == nullptr) goto mr_skip_extensions;

for (Value::MemberIterator it_memb = json_extensions->MemberBegin(); it_memb != json_extensions->MemberEnd(); it_memb++) {
#ifdef ASSIMP_IMPORTER_GLTF_USE_OPEN3DGC
for (Value::MemberIterator it_memb = json_extensions->MemberBegin(); it_memb != json_extensions->MemberEnd(); it_memb++) {
if (it_memb->name.GetString() == std::string("Open3DGC-compression")) {
// Search for compressed data.
// Compressed data contain description of part of "buffer" which is encoded. This part must be decoded and
Expand Down Expand Up @@ -887,11 +887,11 @@ inline void Mesh::Read(Value &pJSON_Object, Asset &pAsset_Root) {
Extension.push_back(ext_o3dgc); // store info in mesh extensions list.
} // if(it_memb->name.GetString() == "Open3DGC-compression")
else
#endif
{
throw DeadlyImportError(std::string("GLTF: Unknown mesh extension: \"") + it_memb->name.GetString() + "\".");
}
} // for(Value::MemberIterator it_memb = json_extensions->MemberBegin(); it_memb != json_extensions->MemberEnd(); json_extensions++)
#endif

mr_skip_extensions:

Expand Down
4 changes: 2 additions & 2 deletions code/AssetLib/glTF/glTFAssetWriter.inl
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,11 @@ namespace glTF {
Value json_extensions;

json_extensions.SetObject();
#ifdef ASSIMP_IMPORTER_GLTF_USE_OPEN3DGC
for(Mesh::SExtension* ptr_ext : m.Extension)
{
switch(ptr_ext->Type)
{
#ifdef ASSIMP_IMPORTER_GLTF_USE_OPEN3DGC
case Mesh::SExtension::EType::Compression_Open3DGC:
{
Value json_comp_data;
Expand Down Expand Up @@ -339,11 +339,11 @@ namespace glTF {
}

break;
#endif
default:
throw DeadlyImportError("GLTF: Can not write mesh: unknown mesh extension, only Open3DGC is supported.");
}// switch(ptr_ext->Type)
}// for(Mesh::SExtension* ptr_ext : m.Extension)
#endif

// Add extensions to mesh
obj.AddMember("extensions", json_extensions, w.mAl);
Expand Down
4 changes: 2 additions & 2 deletions code/AssetLib/glTF/glTFImporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ void glTFImporter::ImportMeshes(glTF::Asset &r) {

// Check if mesh extensions is used
if (mesh.Extension.size() > 0) {
for (Mesh::SExtension *cur_ext : mesh.Extension) {
#ifdef ASSIMP_IMPORTER_GLTF_USE_OPEN3DGC
for (Mesh::SExtension *cur_ext : mesh.Extension) {
if (cur_ext->Type == Mesh::SExtension::EType::Compression_Open3DGC) {
// Limitations for meshes when using Open3DGC-compression.
// It's a current limitation of sp... Specification have not this part still - about mesh compression. Why only one primitive?
Expand All @@ -233,12 +233,12 @@ void glTFImporter::ImportMeshes(glTF::Asset &r) {

buf->EncodedRegion_SetCurrent(mesh.id);
} else
#endif
{
throw DeadlyImportError("GLTF: Can not import mesh: unknown mesh extension (code: \"" + to_string(cur_ext->Type) +
"\"), only Open3DGC is supported.");
}
}
#endif
} // if(mesh.Extension.size() > 0)

meshOffsets.push_back(k);
Expand Down

0 comments on commit 1e80ce2

Please sign in to comment.