Merge branch 'pugi_xml' of https://github.com/assimp/assimp into pugi_xml

pull/2966/head
Kim Kulling 2020-09-22 17:29:49 +02:00
commit 93ae409e74
4 changed files with 12 additions and 2 deletions

View File

@ -316,6 +316,8 @@ void ColladaParser::ReadAssetInfo(XmlNode &node) {
}
} else if (name == "contributor") {
ReadMetaDataItem(currentNode, mAssetMetaData);
} else {
ReadMetaDataItem(currentNode, mAssetMetaData);
}
}
}
@ -408,6 +410,7 @@ void ColladaParser::PostProcessControllers() {
if (meshId.empty()) {
continue;
}
ControllerLibrary::iterator findItr = mControllerLibrary.find(meshId);
while (findItr != mControllerLibrary.end()) {
meshId = findItr->second.mMeshId;
@ -1442,6 +1445,7 @@ void ColladaParser::ReadDataArray(XmlNode &node) {
ai_real value;
// read a number
//SkipSpacesAndLineEnd(&content);
content = fast_atoreal_move<ai_real>(content, value);
data.mValues.push_back(value);
// skip whitespace after it

View File

@ -52,6 +52,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <sstream>
#include <stdarg.h>
#include <cstdlib>
#include <algorithm>
#include <cctype>
#include <locale>
/// @fn ai_snprintf
/// @brief The portable version of the function snprintf ( C99 standard ), which works on visual studio compilers 2013 and earlier.

View File

@ -47,6 +47,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <assimp/Exporter.hpp>
#include <assimp/Importer.hpp>
#include <array>
#ifndef ASSIMP_BUILD_NO_EXPORT
class utColladaExport : public ::testing::Test {
@ -77,6 +79,7 @@ TEST_F(utColladaExport, testExportCamera) {
EXPECT_EQ(AI_SUCCESS, ex->Export(pTest, "collada", file));
const unsigned int origNumCams(pTest->mNumCameras);
//std::vector<float> origFOV;
std::unique_ptr<float[]> origFOV(new float[origNumCams]);
std::unique_ptr<float[]> orifClipPlaneNear(new float[origNumCams]);
std::unique_ptr<float[]> orifClipPlaneFar(new float[origNumCams]);

View File

@ -52,7 +52,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
using namespace Assimp;
class utIssues : public ::testing::Test {
// empty
};
#ifndef ASSIMP_BUILD_NO_EXPORT