Tagged Questions

3
votes
2answers
782 views

opengl invert framebuffer pixels

I was wondering was the best way to invert the color pixels in the frame buffer is. I know it's possible to do with glReadPixels() and glDrawPixels() but the performance hit of those calls is pretty ...
3
votes
4answers
3k views

How to push pixels faster on the iPhone?

I asked before about pixel-pushing, and have now managed to get far enough to get noise to show up on the screen. Here's how I init: CGDataProviderRef provider; bitmap = malloc(320*480*4); provider = ...
2
votes
2answers
117 views

Is there a way to render pixels directly on iPhone?

I want to port a game I've made which renders the screen itself 50 fps (doesn't use opengl). What is the best way to port this to the iPhone? I was reading about Framebuffer Objects. Is this a good ...
2
votes
2answers
901 views

Pushing pixels on the iPhone

What's the fastest way to get a framebuffer and render to in software on the iPhone? Basically getting into a mode 13h style thing going so I can make some effects? :)