Browse Source

fix misor findings.

kimkulling 5 years ago
parent
commit
19b40397a9
2 changed files with 5 additions and 4 deletions
  1. 2 1
      code/glTF/glTFAsset.inl
  2. 3 3
      tools/assimp_cmd/ImageExtractor.cpp

+ 2 - 1
code/glTF/glTFAsset.inl

@@ -1369,8 +1369,9 @@ inline void Asset::ReadExtensionsUsed(Document &doc) {
 #undef CHECK_EXT
 }
 
-inline IOStream *Asset::OpenFile(std::string path, const char *mode, bool /*absolute*/) {
+inline IOStream *Asset::OpenFile(std::string path, const char *mode, bool absolute ) {
 #ifdef ASSIMP_API
+    (void) absolute;
     return mIOSystem->Open(path, mode);
 #else
     if (path.size() < 2) return 0;

+ 3 - 3
tools/assimp_cmd/ImageExtractor.cpp

@@ -198,8 +198,7 @@ int SaveAsTGA(FILE *file, const aiTexel *data, unsigned int width, unsigned int
 
 // -----------------------------------------------------------------------------------
 // Do the texture import for a given aiTexture
-int DoExport(const aiTexture *tx, FILE *p, const std::string &extension,
-        unsigned int flags) {
+int DoExport(const aiTexture *tx, FILE *p, const std::string &extension, unsigned int flags) {
     // export the image to the appropriate decoder
     if (extension == "bmp") {
         SaveAsBMP(p, tx->pcData, tx->mWidth, tx->mHeight,
@@ -355,6 +354,7 @@ int Assimp_Extract(const char *const *params, unsigned int num) {
         if (texIdx != 0xffffffff) {
             return m;
         }
-
+    }
+    
     return AssimpCmdError::Success;
 }