~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

« back to all changes in this revision

Viewing changes to COLLADAMaya/src/COLLADAMayaCgfxShaderIncludes.cpp

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (c) 2008-2009 NetAllied Systems GmbH
 
3
 
 
4
        This file is part of COLLADAMaya.
 
5
 
 
6
    Portions of the code are:
 
7
    Copyright (c) 2005-2007 Feeling Software Inc.
 
8
    Copyright (c) 2005-2007 Sony Computer Entertainment America
 
9
    Copyright (c) 2004-2005 Alias Systems Corp.
 
10
 
 
11
    Licensed under the MIT Open Source License,
 
12
    for details please see LICENSE file or the website
 
13
    http://www.opensource.org/licenses/mit-license.php
 
14
*/
 
15
 
 
16
#include "COLLADAMayaStableHeaders.h"
 
17
 
 
18
#ifdef _WIN32
 
19
# pragma warning(disable: 4312)
 
20
#endif
 
21
 
 
22
// make this compileable under linux
 
23
#ifdef LINUX
 
24
#   define RedHat8_
 
25
#endif
 
26
 
 
27
#include "cgfxAttrDef.cpp"
 
28
#if MAYA_API_VERSION > 800
 
29
#include "cgfxEffectDef.cpp"
 
30
/* We undef the macros defined "cgfxEffectDef.cpp" to avoid compiler warning in "cgfxShaderNode.cpp"*/
 
31
#ifdef _WIN32
 
32
#else
 
33
#   undef stricmp
 
34
#   undef strnicmp 
 
35
#endif
 
36
 
 
37
#endif // MAYA_API_VERSION > 800
 
38
#include "cgfxFindImage.cpp"
 
39
#include "cgfxShaderCmd.cpp"
 
40
#include "cgfxShaderNode.cpp"
 
41
#include "cgfxVector.cpp"
 
42
#include "nv_dds.cpp"
 
43
 
 
44
#if MAYA_API_VERSION >= 201200
 
45
#include "cgfxProfile.cpp"
 
46
#include "cgfxPassStateSetter.cpp"
 
47
#endif
 
48
 
 
49
#if MAYA_API_VERSION >= 201300
 
50
#include "cgfxTextureCache.cpp"
 
51
#endif
 
52
 
 
53
 
 
54
#ifdef _WIN32
 
55
# pragma warning(default: 4312)
 
56
#endif
 
57