expose number of instances

export 'getKeyboardCallback' for chaining
This commit is contained in:
erwin coumans
2013-03-14 12:53:03 -07:00
parent 0aa7c97874
commit 5784d6ce0b
11 changed files with 203 additions and 10 deletions

View File

@@ -28,6 +28,8 @@ public:
float gapY;
float gapZ;
GLInstancingRenderer* m_instancingRenderer;
class btgWindowInterface* m_window;
ConstructionInfo()
:useOpenCL(false),//true),
preferredOpenCLPlatformIndex(-1),
@@ -39,7 +41,8 @@ public:
gapX(4.3),
gapY(4.0),
gapZ(4.3),
m_instancingRenderer(0)
m_instancingRenderer(0),
m_window(0)
{
}
};