Can I allow tkinter's mainloop() and GLUT's glutMainLoop() run concurrently? Can I allow tkinter's mainloop() and GLUT's glutMainLoop() run concurrently? tkinter tkinter

Can I allow tkinter's mainloop() and GLUT's glutMainLoop() run concurrently?


You can't mix GLUT with other windowing frameworks. At least not without going through a lot of pain. But one has to wonder: What is there in GLUT that you must use it? With a little extra module you can create an OpenGL context within TkInter Tkinter OpenGL context in Python