Added performance benchmarks

This commit is contained in:
erwin.coumans
2008-03-20 09:34:11 +00:00
parent bb680f512d
commit bc5b56e99d
10 changed files with 86074 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ subject to the following restrictions:
#include "../GjkConvexCastDemo/LinearConvexCastDemo.h"
#include "../VehicleDemo/VehicleDemo.h"
#include "../ConstraintDemo/ConstraintDemo.h"
#include "../Benchmarks/BenchmarkDemo.h"
#include "GlutStuff.h"//OpenGL stuff
#include "BMF_Api.h"//font stuff
@@ -113,7 +114,14 @@ btDemoEntry g_demoEntries[] =
{"Raytracer Test",Raytracer::Create},
{"GjkConvexCast",LinearConvexCastDemo::Create},
{"VehicleDemo",VehicleDemo::Create},
{"ConstraintDemo",ConstraintDemo::Create},
{"Benchmark 3000 FALL",BenchmarkDemo1::Create},
{"Benchmark 1000 STACK",BenchmarkDemo2::Create},
{"Benchmark 136 RAGDOLLS",BenchmarkDemo3::Create},
{"Benchmark 1000 CONVEX",BenchmarkDemo4::Create},
{"Benchmark Mesh-Prim",BenchmarkDemo5::Create},
{"Benchmark Mesh-Convex",BenchmarkDemo6::Create},
{"Benchmark Raycast",BenchmarkDemo7::Create},
{"MemoryLeakChecker",btEmptyDebugDemo::Create},
{0, 0}
};