summaryrefslogtreecommitdiffstats
path: root/make/cg-common-CustomJavaCode.java
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-06-15 22:52:34 +0000
committerKenneth Russel <[email protected]>2009-06-15 22:52:34 +0000
commit506b634b780dcd23aa61015c2ceba3e687196abf (patch)
tree897649a36cc769351704a050828f8e0e994c5686 /make/cg-common-CustomJavaCode.java
parent04c0c10bfee764dbd0301ae83a0fae695dcb5b23 (diff)
Deleted obsolete source code in preparation for copying JOGL_2_SANDBOX
on to trunk git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@1958 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/cg-common-CustomJavaCode.java')
-rwxr-xr-xmake/cg-common-CustomJavaCode.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/make/cg-common-CustomJavaCode.java b/make/cg-common-CustomJavaCode.java
deleted file mode 100755
index 1f109d9f6..000000000
--- a/make/cg-common-CustomJavaCode.java
+++ /dev/null
@@ -1,29 +0,0 @@
-static {
- com.sun.opengl.impl.NativeLibLoader.loadCgImpl();
-}
-
-/** A convenience method which reads all available data from the InputStream and then calls cgCreateProgram. */
-public static CGprogram cgCreateProgramFromStream(CGcontext ctx, int program_type, java.io.InputStream stream, int profile, java.lang.String entry, java.lang.String[] args) throws java.io.IOException {
- if (stream == null) {
- throw new java.io.IOException("null stream");
- }
- stream = new java.io.BufferedInputStream(stream);
- int avail = stream.available();
- byte[] data = new byte[avail];
- int numRead = 0;
- int pos = 0;
- do {
- if (pos + avail > data.length) {
- byte[] newData = new byte[pos + avail];
- System.arraycopy(data, 0, newData, 0, pos);
- data = newData;
- }
- numRead = stream.read(data, pos, avail);
- if (numRead >= 0) {
- pos += numRead;
- }
- avail = stream.available();
- } while (avail > 0 && numRead >= 0);
- String program = new String(data, 0, pos, "US-ASCII");
- return cgCreateProgram(ctx, program_type, program, profile, entry, args);
-}