Just the functional assimp lib rather than the entire assimp repository unnecessarily.

This commit is contained in:
Areloch 2019-02-28 16:37:15 -06:00
parent 0f7641a282
commit e9ea38eda3
1747 changed files with 9012 additions and 925008 deletions

View file

@ -2,8 +2,7 @@
Open Asset Import Library (assimp)
----------------------------------------------------------------------
Copyright (c) 2006-2018, assimp team
Copyright (c) 2006-2017, assimp team
All rights reserved.
@ -46,10 +45,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef AI_MD3LOADER_H_INCLUDED
#define AI_MD3LOADER_H_INCLUDED
#include <assimp/BaseImporter.h>
#include <assimp/ByteSwapper.h>
#include "BaseImporter.h"
#include "ByteSwapper.h"
#include "MD3FileData.h"
#include <assimp/StringComparison.h>
#include "StringComparison.h"
#include <assimp/types.h>
#include <list>
@ -125,7 +124,7 @@ enum AlphaTestFunc
*/
struct ShaderMapBlock
{
ShaderMapBlock() AI_NO_EXCEPT
ShaderMapBlock()
: blend_src (BLEND_NONE)
, blend_dest (BLEND_NONE)
, alpha_test (AT_NONE)
@ -150,7 +149,7 @@ struct ShaderMapBlock
*/
struct ShaderDataBlock
{
ShaderDataBlock() AI_NO_EXCEPT
ShaderDataBlock()
: cull (CULL_CW)
{}