summaryrefslogtreecommitdiff
path: root/Demos
diff options
context:
space:
mode:
authorerwin.coumans <erwin.coumans@08e121b0-ae19-0410-a57b-3be3395fd4fd>2009-05-16 14:44:28 +0000
committererwin.coumans <erwin.coumans@08e121b0-ae19-0410-a57b-3be3395fd4fd>2009-05-16 14:44:28 +0000
commit8d9c445b73181de3453d9009f01209e76eabff29 (patch)
tree61b987631b7ce317fc1a9f1fac64208cbb23585b /Demos
parenta95b2a33bd8caa4deb35d68507eec90eb090b102 (diff)
downloadbullet3-8d9c445b73181de3453d9009f01209e76eabff29.tar.gz
Fix btGpu2dDemo build -> remove btGpuUtils.cpp and re-enable 3 include files for CPU implementation
(btGpuUtils.cpp requires several build system fixes first)
Diffstat (limited to 'Demos')
-rw-r--r--Demos/Gpu2dDemo/BasicDemo.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/Demos/Gpu2dDemo/BasicDemo.cpp b/Demos/Gpu2dDemo/BasicDemo.cpp
index 8a1a65ea0..7c3435a34 100644
--- a/Demos/Gpu2dDemo/BasicDemo.cpp
+++ b/Demos/Gpu2dDemo/BasicDemo.cpp
@@ -13,9 +13,10 @@ subject to the following restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
-//#include "BulletMultiThreaded/btGpuDefines.h"
-//#include "BulletMultiThreaded/btGpuUtilsSharedDefs.h"
-//#include "BulletMultiThreaded/btGpuUtilsSharedCode.h"
+///The 3 following lines include the CPU implementation of the kernels, keep them in this order.
+#include "BulletMultiThreaded/btGpuDefines.h"
+#include "BulletMultiThreaded/btGpuUtilsSharedDefs.h"
+#include "BulletMultiThreaded/btGpuUtilsSharedCode.h"
//----------------------------------------------------------------------------------------