diff --git a/.travis.yml b/.travis.yml index ac8ca4a10..ff9318bb4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,4 +50,5 @@ after_success: - lcov --directory . --capture --output-file coverage.info - lcov --remove coverage.info '/usr/*' 'contrib/*' 'test/*' --output-file coverage.info - lcov --list coverage.info - - coveralls-lcov --repo-token=${COVERALLS_TOKEN} coverage.info + - coveralls-lcov --source-encoding=ISO-8859-1 --repo-token=${COVERALLS_TOKEN} coverage.info + diff --git a/code/AMFImporter_Postprocess.cpp b/code/AMFImporter_Postprocess.cpp index 41b16035e..e88c2c08b 100644 --- a/code/AMFImporter_Postprocess.cpp +++ b/code/AMFImporter_Postprocess.cpp @@ -352,7 +352,7 @@ void AMFImporter::Postprocess_AddMetadata(const std::listSet(meta_idx++, metadata.Type, metadata.Value.c_str()); + pSceneNode.mMetaData->Set(meta_idx++, metadata.Type, aiString(metadata.Value)); } }// if(pMetadataList.size() > 0) } diff --git a/code/CMakeLists.txt b/code/CMakeLists.txt index 3f0b69670..7f42d9ee7 100644 --- a/code/CMakeLists.txt +++ b/code/CMakeLists.txt @@ -928,3 +928,15 @@ if(MSVC AND ASSIMP_INSTALL_PDB) CONFIGURATIONS RelWithDebInfo ) endif () + +if (ASSIMP_COVERALLS) + include(Coveralls) + + set(COVERAGE_SRCS ${assimp_src} ${TEST_SRCS} ) + + # Create the coveralls target. + coveralls_setup( + "${COVERAGE_SRCS}" # The source files. + ON # If we should upload. + "${PROJECT_SOURCE_DIR}/cmake-modules/") # (Optional) Alternate project cmake module path. +endif() diff --git a/code/STLLoader.cpp b/code/STLLoader.cpp index c2cffdb03..0571e542b 100644 --- a/code/STLLoader.cpp +++ b/code/STLLoader.cpp @@ -274,7 +274,7 @@ void STLImporter::LoadASCIIFile() } else pScene->mRootNode->mName.Set(""); - unsigned int faceVertexCounter = 0; + unsigned int faceVertexCounter = 3; for ( ;; ) { // go to the next token diff --git a/include/assimp/material.h b/include/assimp/material.h index 1f97096b2..23a45878e 100644 --- a/include/assimp/material.h +++ b/include/assimp/material.h @@ -413,7 +413,7 @@ enum aiTextureFlags * SourceColor * SourceBlend + DestColor * DestBlend * @endcode * where DestColor is the previous color in the framebuffer at this - * position and SourceColor is the material colro before the transparency + * position and SourceColor is the material color before the transparency * calculation.
* This corresponds to the #AI_MATKEY_BLEND_FUNC property. */ diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e7beee49e..e227e2124 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -122,15 +122,15 @@ ENDIF( WIN32 ) target_link_libraries( unit assimp ${platform_libs} ) add_subdirectory(headercheck) -if (ASSIMP_COVERALLS) - include(Coveralls) - - set(COVERAGE_SRCS ${assimp_src} ${TEST_SRCS} ) - - # Create the coveralls target. - coveralls_setup( - "${COVERAGE_SRCS}" # The source files. - ON # If we should upload. - "${PROJECT_SOURCE_DIR}/cmake-modules/") # (Optional) Alternate project cmake module path. -endif() +#if (ASSIMP_COVERALLS) +# include(Coveralls) +# +# set(COVERAGE_SRCS ${assimp_src} ${TEST_SRCS} ) +# +# # Create the coveralls target. +# coveralls_setup( +# "${COVERAGE_SRCS}" # The source files. +# ON # If we should upload. +# "${PROJECT_SOURCE_DIR}/cmake-modules/") # (Optional) Alternate project cmake module path. +#endif()