summaryrefslogtreecommitdiffstats
path: root/opengl/tests/gl2_java
Commit message (Collapse)AuthorAgeFilesLines
* Fix another set of out-of-date headers.Dan Bornstein2010-12-072-34/+26
| | | | | | This time in XML files. Change-Id: Iebe36810c3a2d7a6ff354f43808b1b8649b85637
* Extend GLSurfaceView to make it easy to create an OpenGL ES 2.0 contextJack Palevich2009-11-192-217/+2
| | | | | | | | | | | | | | | | Provide a new method, GLSurfaceView.setEGLContextClientVersion. Clients call this method to define which level of OpenGL ES support they want. This method only affects the default behavior of GLSurfaceView. If clients have supplied their own EGLContextFactory or EGLConfigChooser then they are on their own if they want to create an OpenGL ES 2.0 context. This API is currently hidden. Update the gl2_java test to use this new API. Update the gl2_java test's AndroidManifest.xml file to indicate that it requires OpenGL ES 2.0.
* Add a Java API for OpenGL ES 2.0.Jack Palevich2009-11-195-0/+514
Currently this API is hidden. Add a test program.