Posts

Showing posts with the label android

Android Programming 3D Graphics with OpenGL ES (Including Nehe's Port)

Image
Android 3D with OpenGL ES with Nehe's Port   TABLE OF CONTENTS (HIDE) Android Programming 3D Graphics with OpenGL ES (Including Nehe's Port) Introduction Read Android Training "Displaying Graphics with OpenGL ES" @ http://developer.android.com/training/graphics/opengl/index.html . Android API Guides "OpenGL ES" @ http://developer.android.com/guide/topics/graphics/opengl.html . Android Reference "Package android.opengl " @ http://developer.android.com/reference/android/opengl/package-summary.html . Getting Started with 3D Graphics on Android OpenGL ES Android supports OpenGL ES in packages android.opengl , javax.microedition.khronos.opengles and javax.microedition.khronos.egl . GLSurfaceView For 3D graphics programming, you need to program you own custom view, instead using XML-layout. Fortunately, a 3D OpenGL ES view called GLSurfaceView is provided, which greatly simplifies our tasks. I shall use the Nehe's Lessons ( ht...