aboutsummaryrefslogtreecommitdiffstats
path: root/make/gl-gl2.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/gl-gl2.cfg')
-rw-r--r--make/gl-gl2.cfg7
1 files changed, 7 insertions, 0 deletions
diff --git a/make/gl-gl2.cfg b/make/gl-gl2.cfg
index 7e797abee..7df686dd5 100644
--- a/make/gl-gl2.cfg
+++ b/make/gl-gl2.cfg
@@ -37,9 +37,16 @@ DropUniqVendorExtensions SGIX
DropUniqVendorExtensions SUN
DropUniqVendorExtensions WIN
+Ignore GL_STENCIL_INDEX1_EXT
+Ignore GL_STENCIL_INDEX4_EXT
+Ignore GL_STENCIL_INDEX8_EXT
+Ignore GL_STENCIL_INDEX16_EXT
+
# Pick up on-line OpenGL javadoc thanks to user cylab on javagaming.org forums
TagNativeBinding true
+CustomJavaCode GL2 public static final int GL_STENCIL_INDEX16 = 0x8D49;
+
CustomJavaCode GL2 public void glFrustumf(float left, float right, float bottom, float top, float zNear, float zFar);
CustomJavaCode GL2Impl public void glFrustumf(float left, float right, float bottom, float top, float zNear, float zFar) {
CustomJavaCode GL2Impl glFrustum((double)left, (double)right, (double)bottom, (double)top, (double)zNear, (double)zFar); }