I have three different processes running on the same machine. One of them owns an OpenGL window. I would like the other two to be able to render (quickly) to different rectangular portions of the OpenGL window.
If I can guarantee that they will nicely take turns executing OpenGL commands, is this possible?
Many thanks
Hugo Elias
Under Windows, it is possible with threads of the same process.
The function you are looking for is wglMakeCurrent:
http://msdn.microsoft.com/en-us/library/dd374387%28VS.85%29.aspx
My understanding is that this is not possible with any existing drivers. An OpenGL context is owned by just one process.
It's even dicey for two threads within a single process to each be making OpenGL calls to a single OpenGL context. (That doesn't need to be so by design, but it is often a problem with current drivers.)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With