Hi there,
I'm trying to do a frame-by-frame screen capture and noticed a difference between calling saveFrame/Image() during the draw() function vs. during keyPressed(). I'm assuming this is because there is some housekeeping done inbetween, such as glFlush() and other routines at the end of the render pipeline.
This might not make a difference for most people, but in my case it does. (I'm using a stereo rendering plugin (moreStereo3D) that hooks into the OpenGL DLL to do some post-draw-transformations.) Only the saveFrame() called from keyPressed() gives me the intended result.
The question is now: Is there a way to record every frame, but in the moment when the rendering pipeline is completely finished?
Unfortunately there is no postDraw() or similar event that I could hook into. Or is there?
Thanks!
- andré