fix build for vs2013
Signed-off-by: Kim Kulling <kim.kulling@googlemail.com>pull/538/head
parent
444a77e170
commit
02ee002878
|
@ -10,7 +10,8 @@
|
|||
#include "irrXMLWrapper.h"
|
||||
#include "BaseImporter.h"
|
||||
#include <stdint.h>
|
||||
class aiMaterial;
|
||||
|
||||
struct aiMaterial;
|
||||
|
||||
namespace Assimp {
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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 );
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -53,6 +53,7 @@ namespace ODDLParser {
|
|||
struct Context;
|
||||
}
|
||||
struct aiNode;
|
||||
struct aiMaterial;
|
||||
|
||||
namespace Assimp {
|
||||
namespace OpenGEX {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
||||
|
|
Loading…
Reference in New Issue