diff options
Diffstat (limited to 'make/gl-es1.cfg')
-rwxr-xr-x | make/gl-es1.cfg | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/make/gl-es1.cfg b/make/gl-es1.cfg index c19b05b98..0329e64d4 100755 --- a/make/gl-es1.cfg +++ b/make/gl-es1.cfg @@ -41,19 +41,15 @@ LocalProcAddressCallingConvention __ALL__ GL_APIENTRY # Pick up on-line OpenGL javadoc thanks to user cylab on javagaming.org forums TagNativeBinding true -CustomJavaCode GLES1 public void glOrtho(double left, double right, double bottom, double top, double near_val, double far_val); CustomJavaCode GLES1Impl public void glOrtho(double left, double right, double bottom, double top, double near_val, double far_val) { CustomJavaCode GLES1Impl glOrtho((float) left, (float) right, (float) bottom, (float) top, (float) near_val, (float) far_val); } -CustomJavaCode GLES1 public void glFrustum(double left, double right, double bottom, double top, double zNear, double zFar); CustomJavaCode GLES1Impl public void glFrustum(double left, double right, double bottom, double top, double zNear, double zFar) { CustomJavaCode GLES1Impl glFrustumf((float) left, (float) right, (float) bottom, (float) top, (float) zNear, (float) zFar); } -CustomJavaCode GLES1 public void glClearDepth(double depth); CustomJavaCode GLES1Impl public void glClearDepth(double depth) { CustomJavaCode GLES1Impl glClearDepthf((float)depth); } -CustomJavaCode GLES1 public void glDepthRange(double zNear, double zFar); CustomJavaCode GLES1Impl public void glDepthRange(double zNear, double zFar) { CustomJavaCode GLES1Impl glDepthRangef((float)zNear, (float)zFar); } |