Buffering or holding back frames in OpenGLES

113 Views Asked by At

I am trying to buffer upto 10 frames in GLES on Android. The incoming frames come from a camera to a surfacetexture and I process the image using OpenGles. I'm attempting to do this because I'm applying several gles filters causing the GPU to choke, and so I'm losing frame rate. (A 30 FPS camera ends up giving 25 frames). My thinking is if I'm able to hold back a few frames and implement a circular buffer I should be able to delay the frames by a fixed amount (add latency), but still give a consistent frame-rate (throughput).

Any ideas on how this could be done?

1

There are 1 best solutions below

0
On

You probably can't - you get no direct control over the window surface management in OpenGL ES on Android - you'll get as many buffers in the swap chain as the system is configured to give (normally three).

It is unlikely that adding more than three will really help improve frame rate consistency because you're tied to display vsync limits anyway.