Do you know a good tutorial about OpenGL ES 2.0?

I'm going to use it with Android and C++.

Thanks.

link|improve this question

The first one: badlogicgames.com/wordpress/?p=343 It is not exactly a tutorial, but it is a begging. – VansFannel Nov 17 '10 at 19:56
@apps: As you can imagine first I have searched google before I ask the question. It is obvious! – VansFannel Nov 17 '10 at 19:57
@Vans : I know, but a "good tutorial" is pretty subjective thing. You see, if you have 10 answers, each one will be with a different link that he (who has answered) has found useful, but they are all just tutorials. So you will end up with a list of 10 tutorials, which is almost the same as the list in the first few pages on google. That's why I answered you that way, with a little humor in it :) – apps Nov 17 '10 at 20:08
+1 This is a great question! You even change the subject to book/tutorial since it is so hard/impossible to find any of them (at least some that are worth reading). – Searching... Nov 17 '10 at 20:17
3  
The list of books that can appear here also can be rated by programmers and by quality. So, this is better approach to find the good one. – Prcela Nov 18 '10 at 12:31
show 1 more comment
feedback

5 Answers

up vote 9 down vote accepted

I know that you're looking for tutorials that target Android, but the core concepts are the same on iPhone. Therefore, the iPhone 3D Programming book by Philip Rideout that Cosmin mentions is a great resource. The author even favors C++ in his examples throughout, so the code should be fairly portable.

Beyond that, I highly recommend Jeff LaMarche's recent posts on OpenGL ES 2.0, where he's pasting chapters from his unwritten book on the topic. His most recent one can be found here.

Chris Greening started porting the NeHe examples to OpenGL ES 2.0, and a listing of those writeups can be found here.

Finally, I recently taught a class on OpenGL ES 2.0 as part of my advanced iOS development course. The notes from that class can be downloaded here (in VoodooPad format), and the video for it can be downloaded for free from iTunes U.

link|improve this answer
You are great! You have given us a lot of information! Thank you! – VansFannel Nov 19 '10 at 17:47
I am seriously excited by the prospect of your videos! – Chris Barry Dec 3 '10 at 10:49
I'm trying to use a book sample, HellowArrow, with Android and it doesn't work. I asked this question stackoverflow.com/questions/7443363/…. – VansFannel Sep 17 '11 at 11:49
feedback

A nice book about OpenGL ES 2 is OpenGL(R) ES 2.0 Programming Guide. It presents quite well the vertex and fragment shader programming with GLSL language.

I would also recommend the iPhone 3D Programming.

link|improve this answer
feedback

I'm also new to OpenGl-ES but I find this documment (following link) very practical:

High-End 3D Graphics with OpenGL ES 2.0 http://cache.freescale.com/files/dsp/doc/app_note/AN3994.pdf

Also, I printed this out and posted it near my computer. It's a 4 pages Quick Reference Card: http://www.khronos.org/opengles/sdk/docs/reference_cards/OpenGL-ES-2_0-Reference-card.pdf

link|improve this answer
feedback

I liked the NeHe tutorials - http://insanitydesign.com/wp/projects/nehe-android-ports/

link|improve this answer
Original Nehe tutorials are for OpenGL. Android ports are for OpenGL ES 1.1. – VansFannel Nov 18 '10 at 18:40
The link in the post points to android ports of the original NeHe tutorials. – angryInsomniac Mar 27 at 10:13
feedback

It hasn't been mentioned yet but if you are completely new to OpenGL you should also check out the OpenGL Superbible 5th Edition. It doesn't cover specifically OpenGL ES 2.0 but it contains a chapter on OpenGL ES for iPhone(which should be similar to the code for the Android NDK) and most of the rest of the book ports almost directly to OpenGL ES as it sticks to the new OpenGL pipeline.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.