mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 15:44:36 +00:00
Fix include directives
includes now dont go into sub folders for the most part
This commit is contained in:
parent
7367914923
commit
6da3caf88a
7 changed files with 12 additions and 12 deletions
|
|
@ -20,7 +20,7 @@
|
||||||
// IN THE SOFTWARE.
|
// IN THE SOFTWARE.
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
#include "tinyxml2/tinyxml2.h"
|
#include "tinyxml2.h"
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// Console implementation of STL map.
|
// Console implementation of STL map.
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
#include "gfx/bitmap/imageUtils.h"
|
#include "gfx/bitmap/imageUtils.h"
|
||||||
#include "gfx/bitmap/ddsFile.h"
|
#include "gfx/bitmap/ddsFile.h"
|
||||||
#include "platform/threads/threadPool.h"
|
#include "platform/threads/threadPool.h"
|
||||||
#include "squish/squish.h"
|
#include "squish.h"
|
||||||
|
|
||||||
namespace ImageUtil
|
namespace ImageUtil
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
|
|
||||||
#define PNG_INTERNAL 1
|
#define PNG_INTERNAL 1
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "lpng/png.h"
|
#include "png.h"
|
||||||
#include "zlib/zlib.h"
|
#include "zlib.h"
|
||||||
|
|
||||||
#ifdef NULL
|
#ifdef NULL
|
||||||
#undef NULL
|
#undef NULL
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
#include "console/console.h"
|
#include "console/console.h"
|
||||||
#include "console/engineAPI.h"
|
#include "console/engineAPI.h"
|
||||||
#include "platform/threads/mutex.h"
|
#include "platform/threads/mutex.h"
|
||||||
#include "zlib/zlib.h"
|
#include "zlib.h"
|
||||||
|
|
||||||
|
|
||||||
GFX_ImplementTextureProfile(GFXFontTextureProfile,
|
GFX_ImplementTextureProfile(GFXFontTextureProfile,
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
|
|
||||||
#ifndef TINYXML_INCLUDED
|
#ifndef TINYXML_INCLUDED
|
||||||
#include "tinyxml2/tinyxml2.h"
|
#include "tinyxml2.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "platform/platform.h"
|
#include "platform/platform.h"
|
||||||
|
|
|
||||||
|
|
@ -34,11 +34,11 @@
|
||||||
#include "collision/vertexPolyList.h"
|
#include "collision/vertexPolyList.h"
|
||||||
#include "platform/profiler.h"
|
#include "platform/profiler.h"
|
||||||
|
|
||||||
#include "opcode/Opcode.h"
|
#include "Opcode.h"
|
||||||
#include "opcode/Ice/IceAABB.h"
|
#include "Ice/IceAABB.h"
|
||||||
#include "opcode/Ice/IcePoint.h"
|
#include "Ice/IcePoint.h"
|
||||||
#include "opcode/OPC_AABBTree.h"
|
#include "OPC_AABBTree.h"
|
||||||
#include "opcode/OPC_AABBCollider.h"
|
#include "OPC_AABBCollider.h"
|
||||||
|
|
||||||
static bool gOpcodeInitialized = false;
|
static bool gOpcodeInitialized = false;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@
|
||||||
#include "gfx/util/triListOpt.h"
|
#include "gfx/util/triListOpt.h"
|
||||||
#include "util/triRayCheck.h"
|
#include "util/triRayCheck.h"
|
||||||
|
|
||||||
#include "opcode/Opcode.h"
|
#include "Opcode.h"
|
||||||
|
|
||||||
GFXPrimitiveType drawTypes[] = { GFXTriangleList, GFXTriangleStrip };
|
GFXPrimitiveType drawTypes[] = { GFXTriangleList, GFXTriangleStrip };
|
||||||
#define getDrawType(a) (drawTypes[a])
|
#define getDrawType(a) (drawTypes[a])
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue