Search code examples
androidopengl-es2d-games

How are Optimzed graphics games developed in Android


Although this is not a direct programming question, but it would be great if someone can share knowledge

I am very much impressed with the graphics based android games especially "Subway surfer". Can some one explain

  1. Using which tool these graphics are developed and incorporated in Android and iOS. Is it OpenGL ES ?

  2. Can someone point to free opensource games sources which has amazing graphics, which can be used as a reference?

Any related info would be of great help

Thanks.


Solution

  • OpenGL ES is probably the most popular solution because it is pretty fast and supports 3D drawing. Not to mention iOS supports OpenGL ES too (AFAIK) which allows one to develop a cross-platform graphics layer. AndEngine is a popular platform for developing games on Android that sits on top of OpenGL ES, and the example apps show off some pretty cool graphics.