implement GLES10 by simply subclassing GLES20

Most GLES10 functions are identical to the GLES20 functions. No need to
implement this twice.
This commit is contained in:
Julian Winkler
2023-09-01 12:58:26 +02:00
parent 97f8c2ed0f
commit 372ff3fba0
2 changed files with 5 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
package android.opengl;
public class GLES10 extends GLES20 {
}

View File

@@ -193,6 +193,7 @@ hax_jar = jar('hax', [
'android/nfc/NfcManager.java',
'android/opengl/EGLConfig.java',
'android/opengl/EGLObjectHandle.java',
'android/opengl/GLES10.java',
'android/opengl/GLES20.java',
'android/opengl/GLSurfaceView.java',
'android/opengl/Matrix.java',