Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

resources to learn developing games with ndk+opengl in C++? [closed]

i want to learn developing games with NDK+OpenGL . is it possible to write an android game only in C++ .

i was able to run the native-activity sample in NDK sample folder .(which is written in C) .

i was able to set up C++ support in Android.mk and Application.mk ( stl,exceptions,...) with the help of online NDK documentation .

native-activity sample do not have any Java code . Can i assume that it is possible to write a game without Java (only in c++) .

What are the resources ? which links and tutorials do you recommend ? should i learn those jni stuff too ?

like image 583
amin Avatar asked Oct 01 '22 01:10

amin


1 Answers

Yes! It is possible to write a game completely in C++ and OGLES.

This material should address what you are looking for:

  • Android NDK Game Development Cookbook
  • Beginning Android C++ Game Development
like image 181
Wong Tan Avatar answered Oct 03 '22 14:10

Wong Tan