Hi, i'm using dev version for testing and understanding how i can use your product with openframework or opengl. I run wrapper project with visualstudio 2010 properly. I like your product. But i can't draw any thing with opengl while running "DrawGLScene()" method call. When i had commented "DrawGLScene()" call, i would draw somethink. Sample code is below. Do you have any idea? Thanks.
DrawGLScene();
glColor3f(1.0, 1.0, 1.0);
glBegin(GL_POLYGON);
glVertex2f(0, 0);
glVertex2f(200, 0);
glVertex2f(200, 200);
glVertex2f(0, 200);
glEnd();