Updated to FBX SDK 2014.2

Nodes in the FBX file starting with so_ will no longer be decorated with fbx_##_ prefixes.
Updated import pipeline for compatibility with C++11

--HG--
branch : nfb
This commit is contained in:
2013-11-23 12:16:31 -08:00
parent eee9be438d
commit cc5c698b13
7 changed files with 227 additions and 157 deletions

View File

@@ -35,6 +35,10 @@
#include <errno.h>
int KRAKEN_MEM_PAGE_SIZE = getpagesize();
#define KRAKEN_MEM_ROUND_DOWN_PAGE(x) ((x) & ~(KRAKEN_MEM_PAGE_SIZE - 1))
#define KRAKEN_MEM_ROUND_UP_PAGE(x) ((((x) - 1) & ~(KRAKEN_MEM_PAGE_SIZE - 1)) + KRAKEN_MEM_PAGE_SIZE)
int m_mapCount = 0;
size_t m_mapSize = 0;
size_t m_mapOverhead = 0;