Moshe
Moshe

Reputation: 58067

iOS OpenGL ES compatible with Android OpenGL ES?

In theory, can I write a game for iOS in openGL ES and expect to easily port it to Android? How about from Android to iOS?

Upvotes: 4

Views: 1690

Answers (2)

cement
cement

Reputation: 2905

There are differences in Android and iOS game development that you need to take into account:

In android you need to support multiple graphics chips:

  • Different texture compression support
  • Major differences in performance

Different OpenGL ES implementations:

Upvotes: 7

Jacob Relkin
Jacob Relkin

Reputation: 163228

Yes, I believe that if you write a game in C/C++ for iOS, to port it to Android wouldn't be too much of a hassle. However, if you write the game in Objective-C, then it could be quite a hassle indeed.

Upvotes: 6

Related Questions