aboutsummaryrefslogtreecommitdiffstats
path: root/make/lsGL23_unique.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-04-29 17:42:21 +0200
committerSven Gothel <[email protected]>2010-04-29 17:42:21 +0200
commit9bdcb54bc88788c1c3bea1bb76955f81ed3db3f7 (patch)
tree70938e455264ae212fc461345f7da83e7b5e75db /make/lsGL23_unique.sh
parent14256647c8954bb8d6d2afa88927e75783bc912b (diff)
cleanup scripts ; updated win32 and win64 scripts with my environment
Diffstat (limited to 'make/lsGL23_unique.sh')
-rw-r--r--make/lsGL23_unique.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/make/lsGL23_unique.sh b/make/lsGL23_unique.sh
deleted file mode 100644
index e21112ecc..000000000
--- a/make/lsGL23_unique.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#! /bin/sh
-
-BUILDDIR=$1
-shift
-if [ -z "$BUILDDIR" ] ; then
- echo "usage $0 <BUILDDIR>"
- exit 1
-fi
-
-idir=$BUILDDIR/jogl/gensrc/classes/javax/media/opengl
-
-SOURCE="$idir/GL.java $idir/GLES2.java $idir/GL2ES2.java $idir/GL3.java $idir/GL2.java $idir/GL2GL3.java"
-
-echo GL2GL3 to GL2 GL3 Gl2ES2 GLES2 GL defines
-sort $SOURCE | uniq -u | grep GL_ | grep -v "Part of <code>" | awk ' { print $5 } '
-
-echo GL2GL3 to GL2 GL3 Gl2ES2 GLES2 GL functions
-sort $SOURCE | uniq -u | grep "public [a-z0-9_]* gl"