I'm trying to create multiple OpenGL-capable QWidget's but sharing the same GL context. I tried to use QOpenGLWidget but it creates a GL context for every widget.
Is it possible to achieve this using QWidget and Create QOpenGLContext manually and associate it with every created QWidget? Any working examples?

Thanks.