Back to project page DivisionByZero.
The source code is released under:
Apache License
If you think the Android project DivisionByZero listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package fix.android.opengl; /*from w ww .j a v a 2 s.c o m*/ public class GLES20 { static { System.loadLibrary("fix-GLES20"); } native public static void glVertexAttribPointer(int index, int size, int type, boolean normalized, int stride, int offset); native public static void glDrawElements(int mode, int count, int type, int offset); private GLES20() {} }