From 42ece545565a38ec12d6c8d9b9420e04f48256a6 Mon Sep 17 00:00:00 2001 From: "erwin.coumans" Date: Thu, 14 May 2009 17:24:08 +0000 Subject: [PATCH] applied patch that allows to enable multithreading mode for CcdPhysicsDemo, Still requires manually adding BulletMultiThreaded library dependency (we won't enable it by default just yet) Thanks SkewMatrix for the report/fix: http://code.google.com/p/bullet/issues/detail?id=222 --- Demos/CcdPhysicsDemo/CcdPhysicsDemo.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Demos/CcdPhysicsDemo/CcdPhysicsDemo.cpp b/Demos/CcdPhysicsDemo/CcdPhysicsDemo.cpp index 4fea586e9..97fe210b3 100644 --- a/Demos/CcdPhysicsDemo/CcdPhysicsDemo.cpp +++ b/Demos/CcdPhysicsDemo/CcdPhysicsDemo.cpp @@ -38,10 +38,10 @@ subject to the following restrictions: #include "BulletCollision/CollisionDispatch/btSphereTriangleCollisionAlgorithm.h" #ifdef USE_PARALLEL_DISPATCHER -#include "../../Extras/BulletMultiThreaded/SpuGatheringCollisionDispatcher.h" +#include "BulletMultiThreaded/SpuGatheringCollisionDispatcher.h" #ifdef WIN32 -#include "../../Extras/BulletMultiThreaded/Win32ThreadSupport.h" -#include "../../Extras/BulletMultiThreaded/SpuNarrowPhaseCollisionTask/SpuGatheringCollisionTask.h" +#include "BulletMultiThreaded/Win32ThreadSupport.h" +#include "BulletMultiThreaded/SpuNarrowPhaseCollisionTask/SpuGatheringCollisionTask.h" #endif //WIN32 #ifdef USE_LIBSPE2 @@ -49,8 +49,8 @@ subject to the following restrictions: #endif //USE_LIBSPE2 #ifdef USE_PARALLEL_SOLVER -#include "../../Extras/BulletMultiThreaded/SpuParallelSolver.h" -#include "../../Extras/BulletMultiThreaded/SpuSolverTask/SpuParallellSolverTask.h" +#include "BulletMultiThreaded/SpuParallelSolver.h" +#include "BulletMultiThreaded/SpuSolverTask/SpuParallellSolverTask.h" #endif //USE_PARALLEL_SOLVER #endif//USE_PARALLEL_DISPATCHER