In the PowerVR SGX architecture guide, it is mentioned that MSAA is implemented efficiently, because it is entirely handled on-chip, and only the downsampled framebuffer will be written back to the (system memory) framebuffer, thus avoiding the memory bandwidth impact it usually has.
On some platforms buffers will be allocated at surface initialization that are big enough for the MSAA sub-sample data when the parameter buffer is filled and a render is kicked. On others, these buffers will be allocated on the fly as they are needed. On some other platforms the MSAA sub-samples will resolved into a single pixel colour before the flush, which is a lossy operation.
You should contact the development support team for the particular platform you are targeting as the technique that is chosen for the parameter buffer flush cases is a customer specific balance between memory and visual quality of rendered images.
As mentioned in our documentation, the size of the parameter is designed to be high enough that the majority of applications will not hit the storage limit. In almost all cases where this limit is encountered, better CPU culling of drawn objects and mesh optimization to reduce polygon counts will allow the application to avoid the parameter buffer limit.
Thanks, that was exactly the clarification I was hoping for.
lxgr2012-05-30 09:41:27