So I've been working on an iPhone 3D game, at the usual 320x480 resolution (not retina).
I've been testing its performance using instruments, and it reports that renderer utilization % is at 64%, whereas tiler utilization% is at a low 9%. Which means that the performance hit is related to textures, blending etc.
The next thing I tried was to remove all the drawings, except for the skybox. Rendering the skybox alone made the renderer % jump to 40% from the menu screen, which was at 20%.
What could be happening? I tried disabling GL_BLEND, and set GL_NEAREST to the texture mag filters, but the renderer % is still pretty bad.
I tried turning on retina display (four times the resolution) and the frame rate just bombed.
What other things could be done to reduce the renderer overhead? I suppose there must be something, considering RAGE for iPhone runs at 60fps at retina resolution (I haven't confirmed that, actually).