Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are most games on the IPhone done with OpenGL ES?

I was just wondering if most games on the iPhone are done in OpenGL ES as opposed to using Quartz and Core Animation. Are Quartz and Core Animation mostly used for just creating slick interfaces? Or if there is a point with games where OpenGL probably has to be used over using other tools?

like image 785
Alex Avatar asked Apr 14 '09 13:04

Alex


2 Answers

For efficiency reasons OpenGL ES is you best choice for games, unless your writing a "simple" board game or card game (like Solitaire). In this case Core Animation would be a good fit.

like image 64
Richard Stelling Avatar answered Oct 06 '22 18:10

Richard Stelling


You should check out cocos2d-iphone if you are going to do a 2d game. It seems to be a pretty solid foundation. It comes with the chipmunk physics engine and everything all ready to go.

like image 38
Ronald Avatar answered Oct 06 '22 18:10

Ronald