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? :)

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

You need to create a CGImageContext, in a bitmap format that you can directly manipulate. Then, you can draw that image on the screen, use it as a GL texture, or whatever.

Pretty simple stuff - check the Core Graphics documentation. I don't think there's a good way toi get actual raw framebuffer access, but that's probably not what you really want, anyway.

link|improve this answer
You get about 5 fps with this method… – melfar Oct 31 '09 at 13:20
feedback

As far as I know you have an OpenGL|ES accelerator chip on the IPhone. If you want to push pixels you should check which kind of OpenGL|ES is supported. Write code for it and let the hardware do the job.

Writing OpenGL|ES is not hard btw. I you still know what mode13 is (old fart you are!) you should pick up the basics within an hour and after a weekend of toying around you've masterd the API.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.