I want to have a separate OpenGL window.
Is it necessary to use Qt's API for OpenGL to create that and manage the event loop, or can I:
- forked into a separate process
- use GLUT to create a new window and to manage the event loop for the new GL window
- and then use plain old OpenGL C calls?