0
votes
1answer
54 views

iPad OpenGL ES extremely slow glResolveMultisampleFramebufferAPPLE()

I am using the OpenGL ES Analyzer. It shows that calls to glResolveMultisampleFramebufferAPPLE() take around 90% of running time. Is this typical, or do I have some inefficiencies in my code? Here's ...
1
vote
1answer
159 views

Anyone experienced weird alpha blending bug on iOS 4.3.3 with OpenGLES2 and MultiSampling turned on?

I enable multisampling support on iOS 4.3.3 with OpenGLES2, and the rendering result is awful, as if the color is in RGB565, not ARGB8888. The thing is, either turn multisampling off, or deploying ...
0
votes
1answer
393 views

ResolveMultisampleFramebufferAPPLE generates INVALID_OPERATION

I can't figure out, why glResolveMultisampleFramebufferAPPLE generates error 1282 (0x0502, GL_INVALID_OPERATION). Setup code: glGenFramebuffers(1, &framebuffer); ...
0
votes
1answer
827 views

Why doesn't multisampling work?

I'm trying to get multisampling to work in my OpenGL ES app. Framebuffer setup code: glGenFramebuffersOES(1, &framebuffer); glGenRenderbuffersOES(1, &colorRenderbuffer); ...
4
votes
1answer
3k views

Reading data using glReadPixel() with multisampling

Presently I am trying to read the pixel data from the frame Buffer in order to capture the screen in IOS. GlreadPixels command works fine when using the following code to setup frame buffer :- ...