On 29. Jul 2008, at 19:01, Victor Ng-Thow-Hing wrote: > Hi, > I'm building a monitoring application for several different OpenGL > clients simultaneously. I've been looking at Equalizer as a possible > solution. > In particular, is it possible to write an Equalizer appilcation that > can remotely intercept OpenGL drawing commands from different > executables and > consolidate all the renderings on a single display?
Equalizer does not help you to intercept OpenGL calls from an existing application, it helps you to parallelize the OpenGL rendering of an application. It is possible to intercept OpenGL calls from an existing application, several solutions do that. The way to do so is OS-specific, under *nix you simple preload a library which implements the OpenGL entry points and intercepts them this way. Have a look at Chromium for *nix GL interception. There are also commercial solutions intercepting GL on Windows, but I don't know how this works exactly. Cheers, Stefan. _______________________________________________ eq-dev mailing list [email protected] https://in-zueri.ch/cgi-bin/mailman/listinfo/eq-dev http://www.equalizergraphics.com

