From 758e7e8cdf56690f003229c409103645c072e5d8 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 29 Jan 2022 03:35:18 +0100 Subject: Fixed case and separators in include paths in Opcode --- Opcode/Ice/IceAABB.cpp | 2 +- Opcode/Ice/IceContainer.cpp | 2 +- Opcode/Ice/IceHPoint.cpp | 2 +- Opcode/Ice/IceIndexedTriangle.cpp | 2 +- Opcode/Ice/IceMatrix3x3.cpp | 2 +- Opcode/Ice/IceMatrix4x4.cpp | 2 +- Opcode/Ice/IceOBB.cpp | 2 +- Opcode/Ice/IcePlane.cpp | 2 +- Opcode/Ice/IcePoint.cpp | 2 +- Opcode/Ice/IceRandom.cpp | 2 +- Opcode/Ice/IceRay.cpp | 2 +- Opcode/Ice/IceRevisitedRadix.cpp | 2 +- Opcode/Ice/IceSegment.cpp | 2 +- Opcode/Ice/IceTriangle.cpp | 2 +- Opcode/Ice/IceUtils.cpp | 2 +- Opcode/OPC_AABBCollider.cpp | 2 +- Opcode/OPC_AABBTree.cpp | 2 +- Opcode/OPC_BaseModel.cpp | 2 +- Opcode/OPC_BoxPruning.cpp | 2 +- Opcode/OPC_Collider.cpp | 2 +- Opcode/OPC_Common.cpp | 2 +- Opcode/OPC_HybridModel.cpp | 2 +- Opcode/OPC_IceHook.h | 50 +++++++++++++++++++-------------------- Opcode/OPC_LSSCollider.cpp | 2 +- Opcode/OPC_MeshInterface.cpp | 2 +- Opcode/OPC_Model.cpp | 2 +- Opcode/OPC_OBBCollider.cpp | 2 +- Opcode/OPC_OptimizedTree.cpp | 2 +- Opcode/OPC_Picking.cpp | 2 +- Opcode/OPC_PlanesCollider.cpp | 2 +- Opcode/OPC_RayCollider.cpp | 2 +- Opcode/OPC_SphereCollider.cpp | 2 +- Opcode/OPC_SweepAndPrune.cpp | 2 +- Opcode/OPC_TreeBuilders.cpp | 2 +- Opcode/OPC_TreeCollider.cpp | 2 +- Opcode/OPC_VolumeCollider.cpp | 2 +- Opcode/Opcode.cpp | 2 +- Opcode/StdAfx.cpp | 2 +- 38 files changed, 62 insertions(+), 62 deletions(-) (limited to 'Opcode') diff --git a/Opcode/Ice/IceAABB.cpp b/Opcode/Ice/IceAABB.cpp index 2e3288b..62eec5d 100644 --- a/Opcode/Ice/IceAABB.cpp +++ b/Opcode/Ice/IceAABB.cpp @@ -18,7 +18,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IceContainer.cpp b/Opcode/Ice/IceContainer.cpp index 552d051..104098b 100644 --- a/Opcode/Ice/IceContainer.cpp +++ b/Opcode/Ice/IceContainer.cpp @@ -22,7 +22,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceCore; diff --git a/Opcode/Ice/IceHPoint.cpp b/Opcode/Ice/IceHPoint.cpp index 2074543..5282313 100644 --- a/Opcode/Ice/IceHPoint.cpp +++ b/Opcode/Ice/IceHPoint.cpp @@ -26,7 +26,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IceIndexedTriangle.cpp b/Opcode/Ice/IceIndexedTriangle.cpp index ea32362..58687cd 100644 --- a/Opcode/Ice/IceIndexedTriangle.cpp +++ b/Opcode/Ice/IceIndexedTriangle.cpp @@ -9,7 +9,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IceMatrix3x3.cpp b/Opcode/Ice/IceMatrix3x3.cpp index 189d39d..1682a7b 100644 --- a/Opcode/Ice/IceMatrix3x3.cpp +++ b/Opcode/Ice/IceMatrix3x3.cpp @@ -33,7 +33,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IceMatrix4x4.cpp b/Opcode/Ice/IceMatrix4x4.cpp index 4c539c9..749211e 100644 --- a/Opcode/Ice/IceMatrix4x4.cpp +++ b/Opcode/Ice/IceMatrix4x4.cpp @@ -36,7 +36,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IceOBB.cpp b/Opcode/Ice/IceOBB.cpp index 5a986e8..2b1205b 100644 --- a/Opcode/Ice/IceOBB.cpp +++ b/Opcode/Ice/IceOBB.cpp @@ -18,7 +18,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IcePlane.cpp b/Opcode/Ice/IcePlane.cpp index 15e907c..613e4a5 100644 --- a/Opcode/Ice/IcePlane.cpp +++ b/Opcode/Ice/IcePlane.cpp @@ -18,7 +18,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IcePoint.cpp b/Opcode/Ice/IcePoint.cpp index 8bf2d40..5dc35fe 100644 --- a/Opcode/Ice/IcePoint.cpp +++ b/Opcode/Ice/IcePoint.cpp @@ -46,7 +46,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IceRandom.cpp b/Opcode/Ice/IceRandom.cpp index 0139be6..8593399 100644 --- a/Opcode/Ice/IceRandom.cpp +++ b/Opcode/Ice/IceRandom.cpp @@ -9,7 +9,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceCore; diff --git a/Opcode/Ice/IceRay.cpp b/Opcode/Ice/IceRay.cpp index a3872f6..7db78a5 100644 --- a/Opcode/Ice/IceRay.cpp +++ b/Opcode/Ice/IceRay.cpp @@ -59,7 +59,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IceRevisitedRadix.cpp b/Opcode/Ice/IceRevisitedRadix.cpp index f55b0cf..c9eca90 100644 --- a/Opcode/Ice/IceRevisitedRadix.cpp +++ b/Opcode/Ice/IceRevisitedRadix.cpp @@ -49,7 +49,7 @@ To do: /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceCore; diff --git a/Opcode/Ice/IceSegment.cpp b/Opcode/Ice/IceSegment.cpp index 0eede40..189be8f 100644 --- a/Opcode/Ice/IceSegment.cpp +++ b/Opcode/Ice/IceSegment.cpp @@ -22,7 +22,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IceTriangle.cpp b/Opcode/Ice/IceTriangle.cpp index 8a0a4b6..c3794fe 100644 --- a/Opcode/Ice/IceTriangle.cpp +++ b/Opcode/Ice/IceTriangle.cpp @@ -9,7 +9,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceMaths; diff --git a/Opcode/Ice/IceUtils.cpp b/Opcode/Ice/IceUtils.cpp index d877203..7ed9cdb 100644 --- a/Opcode/Ice/IceUtils.cpp +++ b/Opcode/Ice/IceUtils.cpp @@ -9,7 +9,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace IceCore; diff --git a/Opcode/OPC_AABBCollider.cpp b/Opcode/OPC_AABBCollider.cpp index fe87d24..ec9a9cf 100644 --- a/Opcode/OPC_AABBCollider.cpp +++ b/Opcode/OPC_AABBCollider.cpp @@ -28,7 +28,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_AABBTree.cpp b/Opcode/OPC_AABBTree.cpp index e7ac631..166cb0f 100644 --- a/Opcode/OPC_AABBTree.cpp +++ b/Opcode/OPC_AABBTree.cpp @@ -44,7 +44,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_BaseModel.cpp b/Opcode/OPC_BaseModel.cpp index 4e15809..b37c079 100644 --- a/Opcode/OPC_BaseModel.cpp +++ b/Opcode/OPC_BaseModel.cpp @@ -28,7 +28,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_BoxPruning.cpp b/Opcode/OPC_BoxPruning.cpp index adc2d24..74a3b3b 100644 --- a/Opcode/OPC_BoxPruning.cpp +++ b/Opcode/OPC_BoxPruning.cpp @@ -30,7 +30,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_Collider.cpp b/Opcode/OPC_Collider.cpp index bb9663d..a6685be 100644 --- a/Opcode/OPC_Collider.cpp +++ b/Opcode/OPC_Collider.cpp @@ -28,7 +28,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_Common.cpp b/Opcode/OPC_Common.cpp index 839186b..c6b4259 100644 --- a/Opcode/OPC_Common.cpp +++ b/Opcode/OPC_Common.cpp @@ -43,6 +43,6 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_HybridModel.cpp b/Opcode/OPC_HybridModel.cpp index 0793e5e..a43b5d2 100644 --- a/Opcode/OPC_HybridModel.cpp +++ b/Opcode/OPC_HybridModel.cpp @@ -82,7 +82,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_IceHook.h b/Opcode/OPC_IceHook.h index 8b97eaa..12c882a 100644 --- a/Opcode/OPC_IceHook.h +++ b/Opcode/OPC_IceHook.h @@ -18,7 +18,7 @@ #include #include #include - #include + #include #ifndef ASSERT #define ASSERT(exp) {} @@ -29,42 +29,42 @@ #define SetIceError false #define EC_OUTOFMEMORY "Out of memory" - #include ".\Ice\IcePreprocessor.h" + #include "Ice/IcePreprocessor.h" #undef ICECORE_API #define ICECORE_API OPCODE_API - #include ".\Ice\IceTypes.h" - #include ".\Ice\IceFPU.h" - #include ".\Ice\IceMemoryMacros.h" + #include "Ice/IceTypes.h" + #include "Ice/IceFPU.h" + #include "Ice/IceMemoryMacros.h" namespace IceCore { - #include ".\Ice\IceUtils.h" - #include ".\Ice\IceContainer.h" - #include ".\Ice\IcePairs.h" - #include ".\Ice\IceRevisitedRadix.h" - #include ".\Ice\IceRandom.h" + #include "Ice/IceUtils.h" + #include "Ice/IceContainer.h" + #include "Ice/IcePairs.h" + #include "Ice/IceRevisitedRadix.h" + #include "Ice/IceRandom.h" } using namespace IceCore; #define ICEMATHS_API OPCODE_API namespace IceMaths { - #include ".\Ice\IceAxes.h" - #include ".\Ice\IcePoint.h" - #include ".\Ice\IceHPoint.h" - #include ".\Ice\IceMatrix3x3.h" - #include ".\Ice\IceMatrix4x4.h" - #include ".\Ice\IcePlane.h" - #include ".\Ice\IceRay.h" - #include ".\Ice\IceIndexedTriangle.h" - #include ".\Ice\IceTriangle.h" - #include ".\Ice\IceTriList.h" - #include ".\Ice\IceAABB.h" - #include ".\Ice\IceOBB.h" - #include ".\Ice\IceBoundingSphere.h" - #include ".\Ice\IceSegment.h" - #include ".\Ice\IceLSS.h" + #include "Ice/IceAxes.h" + #include "Ice/IcePoint.h" + #include "Ice/IceHPoint.h" + #include "Ice/IceMatrix3x3.h" + #include "Ice/IceMatrix4x4.h" + #include "Ice/IcePlane.h" + #include "Ice/IceRay.h" + #include "Ice/IceIndexedTriangle.h" + #include "Ice/IceTriangle.h" + #include "Ice/IceTrilist.h" + #include "Ice/IceAABB.h" + #include "Ice/IceOBB.h" + #include "Ice/IceBoundingSphere.h" + #include "Ice/IceSegment.h" + #include "Ice/IceLSS.h" } using namespace IceMaths; diff --git a/Opcode/OPC_LSSCollider.cpp b/Opcode/OPC_LSSCollider.cpp index 059dd52..3b4559e 100644 --- a/Opcode/OPC_LSSCollider.cpp +++ b/Opcode/OPC_LSSCollider.cpp @@ -28,7 +28,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_MeshInterface.cpp b/Opcode/OPC_MeshInterface.cpp index bfd7180..e4395b7 100644 --- a/Opcode/OPC_MeshInterface.cpp +++ b/Opcode/OPC_MeshInterface.cpp @@ -116,7 +116,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_Model.cpp b/Opcode/OPC_Model.cpp index b713dbb..f758ad3 100644 --- a/Opcode/OPC_Model.cpp +++ b/Opcode/OPC_Model.cpp @@ -90,7 +90,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_OBBCollider.cpp b/Opcode/OPC_OBBCollider.cpp index d8cf63f..1803350 100644 --- a/Opcode/OPC_OBBCollider.cpp +++ b/Opcode/OPC_OBBCollider.cpp @@ -28,7 +28,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_OptimizedTree.cpp b/Opcode/OPC_OptimizedTree.cpp index e2abe60..32e4803 100644 --- a/Opcode/OPC_OptimizedTree.cpp +++ b/Opcode/OPC_OptimizedTree.cpp @@ -66,7 +66,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_Picking.cpp b/Opcode/OPC_Picking.cpp index 2d0e11b..5971971 100644 --- a/Opcode/OPC_Picking.cpp +++ b/Opcode/OPC_Picking.cpp @@ -17,7 +17,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_PlanesCollider.cpp b/Opcode/OPC_PlanesCollider.cpp index ef0088e..2ee6686 100644 --- a/Opcode/OPC_PlanesCollider.cpp +++ b/Opcode/OPC_PlanesCollider.cpp @@ -28,7 +28,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_RayCollider.cpp b/Opcode/OPC_RayCollider.cpp index c0389f6..53a39d1 100644 --- a/Opcode/OPC_RayCollider.cpp +++ b/Opcode/OPC_RayCollider.cpp @@ -112,7 +112,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_SphereCollider.cpp b/Opcode/OPC_SphereCollider.cpp index c584c97..bb6dfc3 100644 --- a/Opcode/OPC_SphereCollider.cpp +++ b/Opcode/OPC_SphereCollider.cpp @@ -32,7 +32,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_SweepAndPrune.cpp b/Opcode/OPC_SweepAndPrune.cpp index b593e8b..2e60ca8 100644 --- a/Opcode/OPC_SweepAndPrune.cpp +++ b/Opcode/OPC_SweepAndPrune.cpp @@ -17,7 +17,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_TreeBuilders.cpp b/Opcode/OPC_TreeBuilders.cpp index cd20c80..600f08b 100644 --- a/Opcode/OPC_TreeBuilders.cpp +++ b/Opcode/OPC_TreeBuilders.cpp @@ -50,7 +50,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_TreeCollider.cpp b/Opcode/OPC_TreeCollider.cpp index eb2b4f8..24b9e2a 100644 --- a/Opcode/OPC_TreeCollider.cpp +++ b/Opcode/OPC_TreeCollider.cpp @@ -29,7 +29,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/OPC_VolumeCollider.cpp b/Opcode/OPC_VolumeCollider.cpp index 70fc292..dd61046 100644 --- a/Opcode/OPC_VolumeCollider.cpp +++ b/Opcode/OPC_VolumeCollider.cpp @@ -28,7 +28,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" using namespace Opcode; diff --git a/Opcode/Opcode.cpp b/Opcode/Opcode.cpp index 72d6b47..999e028 100644 --- a/Opcode/Opcode.cpp +++ b/Opcode/Opcode.cpp @@ -33,7 +33,7 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Precompiled Header -#include "Stdafx.h" +#include "StdAfx.h" bool Opcode::InitOpcode() { diff --git a/Opcode/StdAfx.cpp b/Opcode/StdAfx.cpp index c9b75bb..ae10277 100644 --- a/Opcode/StdAfx.cpp +++ b/Opcode/StdAfx.cpp @@ -7,4 +7,4 @@ /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //#define ICE_MAIN -#include "Stdafx.h" +#include "StdAfx.h" -- cgit v1.1