aboutsummaryrefslogtreecommitdiffstats
path: root/make/glu-common.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/glu-common.cfg')
-rw-r--r--make/glu-common.cfg75
1 files changed, 0 insertions, 75 deletions
diff --git a/make/glu-common.cfg b/make/glu-common.cfg
index 679e4aef4..b5a92819b 100644
--- a/make/glu-common.cfg
+++ b/make/glu-common.cfg
@@ -7,11 +7,6 @@ JavaOutputDir ../build/gensrc/classes
NativeOutputDir ../build/gensrc/native/jogl
HierarchicalNativeOutput false
-EmitProcAddressTable true
-ProcAddressTablePackage com.sun.opengl.impl
-ProcAddressTableClassName GLUProcAddressTable
-GetProcAddressTableExpr getGLUProcAddressTable()
-
# Pick up on-line OpenGL javadoc thanks to user cylab on javagaming.org forums
TagNativeBinding true
@@ -23,23 +18,6 @@ Import javax.media.opengl.*
Import javax.media.opengl.glu.*
Import com.sun.opengl.impl.*
-# GLU needs access to the GLUtesselatorImpl class for GLUtesselator,
-# to the Mipmap class for scaling and mipmap generation,
-# and to the nurbs.* package for the NURBS functionality
-Import com.sun.opengl.impl.tessellator.GLUtessellatorImpl
-Import com.sun.opengl.impl.error.Error
-Import com.sun.opengl.impl.mipmap.Mipmap
-Import com.sun.opengl.impl.registry.Registry
-Import com.sun.opengl.impl.nurbs.*
-Import com.sun.opengl.util.*
-Import java.security.*
-
-# Custom Java code for GLU class
-IncludeAs CustomJavaCode GLU glu-CustomJavaCode.java
-
-CustomCCode /* Include the OpenGL GLU header */
-CustomCCode #include <GL/glu.h>
-
# Raise GLException instead of RuntimeException in glue code
RuntimeExceptionType GLException
@@ -199,56 +177,3 @@ Ignore gluOrtho2D
Ignore gluPerspective
Ignore gluLookAt
Ignore gluPickMatrix
-
-
-
-
-
-#
-# Some functions that return native byte pointers or accept them as
-# arguments should have them auto-converted to Java Strings
-#
-# ReturnsString gluGetString
-# ReturnsString gluErrorString
-# ArgumentIsString gluCheckExtension 0 1
-
-#
-# Some routines should only use the Java New IO package
-#
-#NIOOnly gluScaleImage
-#NIOOnly gluBuild1DMipmaps
-#NIOOnly gluBuild2DMipmaps
-#NIOOnly gluBuild3DMipmaps
-#NIOOnly gluBuild1DMipmapLevels
-#NIOOnly gluBuild2DMipmapLevels
-#NIOOnly gluBuild3DMipmapLevels
-
-#
-# ------------------------
-# Mipmaps
-# ------------------------
-#
-# Ignore the C versions of the mipmap code in the public interface and
-# use GKW's Java port instead. The bindings to the C entry points are
-# still being left in for now, but only for debugging purposes and the
-# intent is to remove them in a future release.
-
-# Emit these entry points as private
-
-AccessControl gluBuild1DMipmapLevels PRIVATE
-AccessControl gluBuild1DMipmaps PRIVATE
-AccessControl gluBuild2DMipmapLevels PRIVATE
-AccessControl gluBuild2DMipmaps PRIVATE
-AccessControl gluBuild3DMipmapLevels PRIVATE
-AccessControl gluBuild3DMipmaps PRIVATE
-AccessControl gluScaleImage PRIVATE
-
-# Rename these methods in the implementing class
-
-RenameJavaMethod gluBuild1DMipmapLevels gluBuild1DMipmapLevelsC
-RenameJavaMethod gluBuild1DMipmaps gluBuild1DMipmapsC
-RenameJavaMethod gluBuild2DMipmapLevels gluBuild2DMipmapLevelsC
-RenameJavaMethod gluBuild2DMipmaps gluBuild2DMipmapsC
-RenameJavaMethod gluBuild3DMipmapLevels gluBuild3DMipmapLevelsC
-RenameJavaMethod gluBuild3DMipmaps gluBuild3DMipmapsC
-RenameJavaMethod gluScaleImage gluScaleImageC