Add posix thread backend to BulletMultiThreaded. Contributed by Enrico.

This commit is contained in:
john.mccutchan
2008-04-01 18:32:41 +00:00
parent 64df6edf39
commit ba27e0522b
13 changed files with 356 additions and 17 deletions

View File

@@ -12,7 +12,7 @@ subject to the following restrictions:
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include <cstdio>
#include "MultiThreadedDemo.h"
#include "GlutStuff.h"
#include "GLDebugDrawer.h"
@@ -22,7 +22,6 @@ GLDebugDrawer gDebugDrawer;
int main(int argc,char** argv)
{
MultiThreadedDemo* demo = new MultiThreadedDemo();
demo->initPhysics();
@@ -33,4 +32,5 @@ int main(int argc,char** argv)
delete demo;
return EXIT_SUCCESS;
}