I’m developing a simple IDE that has a embed, non-QT OpenGL renderer inside it. To prevent segfault’s on the renderer to crash my application I’m willing to create it as a subprocess and somehow attach it as an widget on my QT main window. Is that possible?
Share
Yes, you need to use QX11EmbedContainer in the main process, and then in another process to show your opengl widget.