fix misor findings.
parent
69551e81ed
commit
19b40397a9
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue