Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the documentation for OpenGL ES 2.0 on Android?

The only place I can find documentation on OpenGL ES 2.0 for android is at https://developer.android.com/reference/android/opengl/GLES20.html and at the tutorials on their website. Where can I find an api that explains what the GLES20 methods do? The current api just lists them without any explanation. I've run several internet searches and have had no luck.

like image 955
CoderOfHonor Avatar asked Dec 26 '22 01:12

CoderOfHonor


1 Answers

OpenGL ES is managed by the Khronos Group and documentation can be found on their site here: http://www.khronos.org/opengles/sdk/docs/man/

It may not be Java/Android specific, but it is the 'official' documentation for OpenGL ES 2.0. You could use it in combination with the link you provided yourself for the actual Java/Android calls.

like image 124
Reigertje Avatar answered Jan 04 '23 22:01

Reigertje