Is OpenGL ES 2.0 Possible Without NDK?

I am studying Android development, in particular, to end up making OpengL 2.0 ES on it.

So far, I read that the NDK supports Opengl 2.0 ES.

However, is there a Java API there?

If there is a Java API for it, which one is recommended? I know both C ++ and Java, so it doesn't really matter if I have to use the NDK, but I would prefer to work only in Java, if possible, and without much performance.

+5
source share
2 answers

, OpenGL ES 2.0 Java, NDK. OpenGL ES 2.0 Android: http://developer.android.com/resources/tutorials/opengl/opengl-es20.html

, SDK. samples:

* ApiDemos\src\com\example\android\apis\graphics\GLES20Activity.java
* ApiDemos\src\com\example\android\apis\graphics\GLES20TriangleRenderer.java
* BasicGLSurfaceView\src\com\example\android\basicglsurfaceview\*.java
+1

All Articles