aboutsummaryrefslogtreecommitdiffstats
path: root/make/glu-base.cfg
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2008-07-18 18:21:25 +0000
committerSven Gothel <[email protected]>2008-07-18 18:21:25 +0000
commitde0eaef37caf13314114ab37cc53edc48610a7bf (patch)
tree82f23e6a3a93975312108ffd9f29e6ebc462ce3a /make/glu-base.cfg
parent52a5e479db5e2ad41889d69fb470922f35438e3e (diff)
Cleanup and partitioning of GLU
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1728 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/glu-base.cfg')
-rwxr-xr-xmake/glu-base.cfg24
1 files changed, 24 insertions, 0 deletions
diff --git a/make/glu-base.cfg b/make/glu-base.cfg
new file mode 100755
index 000000000..39a699eee
--- /dev/null
+++ b/make/glu-base.cfg
@@ -0,0 +1,24 @@
+# This .cfg file is used to generate the GLU implementation for OpenGL ES 1.0,
+# where it is pure Java.
+JavaOutputDir ../build/gensrc/classes
+NativeOutputDir ../build/gensrc/native/jogl
+
+Style ImplOnly
+ImplPackage javax.media.opengl.glu
+ImplJavaClass GLU
+AccessControl GLU PUBLIC
+
+Ignore gluBuild1DMipmapLevels
+Ignore gluBuild1DMipmaps
+Ignore gluBuild2DMipmapLevels
+Ignore gluBuild2DMipmaps
+Ignore gluBuild3DMipmapLevels
+Ignore gluBuild3DMipmaps
+Ignore gluScaleImage
+
+# Custom Java code for GLU class
+IncludeAs CustomJavaCode GLU glu-CustomJavaCode-base.java
+
+Include glu-common.cfg
+
+Import java.lang.reflect.*