I need to retreive the screen image from the GLKView and resize it and send it to the network to feed a Led matrix. So with this requirement, I need to take a snapshot of the GLKView every 30 ms. The problem I encounter is that it takes around 150 ms on my iPad to proceed :
UIImage *snap = [(GLKView *)self.view snapshot] ;
I am looking for a quicker/better alternative to this snapshot method to retreive the screen capture.
Thanks for your help, Regards, Christophe.