Hello there!
This is my first post here and maibee my 10th hour of C++/OF,… and I got to say, this is great! Thanks a lot Zach and Theo! Keep up the good work!
I’m trying to create another window to put all my GUI stuffs, I tried this code but it just make my app crash:
int winId = glutGetWindow();
glutInitWindowSize(200,600);
glutInitWindowPosition(20,20);
glutCreateWindow("test");
glutSetWindow(winId);
Any idea why OF doesn’t like that?
I got this strange error message but i don’t know what to do with that…Can someone tell me what does i mean:
Glut: Fatal Error in openframeworks: redisplay needed for window 3, but no display callback.
Thanks!