diff options
Diffstat (limited to 'make/glu-CustomJavaCode-gles1_if.java')
-rwxr-xr-x | make/glu-CustomJavaCode-gles1_if.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/make/glu-CustomJavaCode-gles1_if.java b/make/glu-CustomJavaCode-gles1_if.java index bb9f3d54d..ac140edcf 100755 --- a/make/glu-CustomJavaCode-gles1_if.java +++ b/make/glu-CustomJavaCode-gles1_if.java @@ -331,10 +331,16 @@ public abstract void gluQuadricTexture(GLUquadric quad, boolean texture) ; /** Interface to C language function: <br> <code> void gluSphere(GLUquadric * quad, GLdouble radius, GLint slices, GLint stacks); </code> */ public abstract void gluSphere(GLUquadric quad, double radius, int slices, int stacks) ; +public abstract void gluOrtho2D(float left, float right, float bottom, float top) ; + public abstract void gluOrtho2D(double left, double right, double bottom, double top) ; +public abstract void gluPerspective(float fovy, float aspect, float zNear, float zFar) ; + public abstract void gluPerspective(double fovy, double aspect, double zNear, double zFar) ; +public abstract void gluLookAt(float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) ; + public abstract void gluLookAt(double eyeX, double eyeY, double eyeZ, double centerX, double centerY, double centerZ, double upX, double upY, double upZ) ; /** Interface to C language function: <br> <code> GLint gluProject(GLdouble objX, GLdouble objY, GLdouble objZ, const GLdouble * model, const GLdouble * proj, const GLint * view, GLdouble * winX, GLdouble * winY, GLdouble * winZ); </code> |