fix build for vs2013

Signed-off-by: Kim Kulling <kim.kulling@googlemail.com>
pull/538/head
Kim Kulling 2015-04-16 11:38:53 +02:00
parent 444a77e170
commit 02ee002878
10 changed files with 268 additions and 263 deletions

View File

@ -10,7 +10,8 @@
#include "irrXMLWrapper.h"
#include "BaseImporter.h"
#include <stdint.h>
class aiMaterial;
struct aiMaterial;
namespace Assimp {

View File

@ -51,9 +51,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
struct aiImporterDesc;
namespace Assimp {
struct BatchLoader;
struct Importer;
struct IOSystem;
class BatchLoader;
class Importer;
class IOSystem;
namespace LWS {

View File

@ -59,7 +59,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <stdint.h>
#include <vector>
class aiMaterial;
struct aiMaterial;
namespace Assimp {
namespace MDL {

View File

@ -50,12 +50,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <string>
#include <vector>
class IOSystem;
class Importer;
struct aiImporterDesc;
struct aiScene;
namespace Assimp {
class IOSystem;
class Importer;
// ---------------------------------------------------------------------------
/** @brief Importer class to load meshes from Nendo.

View File

@ -772,12 +772,12 @@ void OpenGEXImporter::handleColorNode( ODDLParser::DDLNode *node, aiScene *pScen
Property *colorProp = node->getProperties();
if( NULL != colorProp ) {
if( NULL != colorProp->m_id ) {
ColorType type( getColorType( colorProp->m_primData ) );
/* ColorType type( getColorType( colorProp->m_primData ) );
if( type == DiffuseColor ) {
aiColor3D *col = new aiColor3D;
getColorRGBA( col, node->getValue() );
m_currentMaterial->AddProperty( col, 1, AI_MATKEY_COLOR_DIFFUSE );
}
}*/
}
}
}

View File

@ -53,6 +53,7 @@ namespace ODDLParser {
struct Context;
}
struct aiNode;
struct aiMaterial;
namespace Assimp {
namespace OpenGEX {

View File

@ -51,6 +51,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <set>
#include <list>
#include <stdint.h>
//#include "../include/assimp/Compiler/pstdint.h"
#include <vector>
struct aiScene;

View File

@ -21,8 +21,8 @@
#include <stdexcept>
#include "StringComparison.h"
#include "../include/assimp/Compiler/pstdint.h"
//#include "../include/assimp/Compiler/pstdint.h"
#include <stdint.h>
namespace Assimp
{