bullet3/demo/gpudemo/GpuDemo.h

73 lines
1.4 KiB
C
Raw Normal View History

2013-03-13 22:03:08 +00:00
#ifndef GPU_DEMO_H
#define GPU_DEMO_H
class GLInstancingRenderer;
2013-03-22 00:36:52 +00:00
2013-03-13 22:03:08 +00:00
class GpuDemo
{
protected:
struct GpuDemoInternalData* m_clData;
virtual void initCL(int preferredDeviceIndex, int preferredPlatformIndex);
virtual void exitCL();
public:
typedef class GpuDemo* (CreateFunc)();
struct ConstructionInfo
2013-03-20 03:06:24 +00:00
{
bool useOpenCL;
int preferredOpenCLPlatformIndex;
int preferredOpenCLDeviceIndex;
int arraySizeX;
int arraySizeY;
int arraySizeZ;
bool m_useConcaveMesh;
float gapX;
float gapY;
float gapZ;
GLInstancingRenderer* m_instancingRenderer;
class btgWindowInterface* m_window;
class GwenUserInterface* m_gui;
2013-03-20 03:06:24 +00:00
ConstructionInfo()
:useOpenCL(true),
preferredOpenCLPlatformIndex(-1),
preferredOpenCLDeviceIndex(-1),
arraySizeX(15),
arraySizeY(15),
arraySizeZ(15),
2013-03-20 03:06:24 +00:00
m_useConcaveMesh(false),
2013-03-22 23:24:09 +00:00
gapX(14.3),
gapY(14.0),
gapZ(14.3),
2013-03-20 03:06:24 +00:00
m_instancingRenderer(0),
m_window(0),
m_gui(0)
2013-03-20 03:06:24 +00:00
{
}
};
2013-03-13 22:03:08 +00:00
GpuDemo();
virtual ~GpuDemo();
virtual const char* getName()=0;
virtual void initPhysics(const ConstructionInfo& ci)=0;
virtual void exitPhysics()=0;
virtual void renderScene()=0;
virtual void clientMoveAndDisplay()=0;
};
#endif