diff options
author | Sven Gothel <[email protected]> | 2002-04-25 03:21:58 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2002-04-25 03:21:58 +0000 |
commit | 53a0faa0cce4546b441cb6af033adaabd2f1da94 (patch) | |
tree | e92bb216d2b13269c179d4e049ec5384bca1d25e /gl4java/GLContext.java.skel | |
parent | 6114297dac0848d470a3211915bea64f49d584e7 (diff) |
added pepijn's bugfix (jdk <= 1.3 GC, tesselation)
SGI Irix capable code ..
correct NIO usage for tesselation ..
minor stuff ..
Diffstat (limited to 'gl4java/GLContext.java.skel')
-rw-r--r-- | gl4java/GLContext.java.skel | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gl4java/GLContext.java.skel b/gl4java/GLContext.java.skel index 3e11bc8..7e441ba 100644 --- a/gl4java/GLContext.java.skel +++ b/gl4java/GLContext.java.skel @@ -2203,7 +2203,7 @@ public class GLContext extends Object if (libpath == null) { libpath = findInPath(System.getProperty("sun.boot.library.path"), jawtName0); } else if (gljClassDebug) { - System.err.println("Located: " + jawtName0 + ", within: java.library.path: "+ + System.err.println("Located: " + jawtName0 + ": "+libpath+", within: java.library.path: "+ System.getProperty("java.library.path")); found = true; } @@ -2222,7 +2222,7 @@ public class GLContext extends Object libpath = findInPath(System.getProperty("java.library.path"), jawtName1); } else if (gljClassDebug && !found) { - System.err.println("Located: " + jawtName0 + ", within: sun.boot.library.path: "+ + System.err.println("Located: " + jawtName0 + ": "+libpath+", within: sun.boot.library.path: "+ System.getProperty("sun.boot.library.path")); found = true; } @@ -2234,7 +2234,7 @@ public class GLContext extends Object if (libpath == null) { libpath = findInPath(System.getProperty("sun.boot.library.path"), jawtName1); } else if (gljClassDebug && !found) { - System.err.println("Located: " + jawtName1 + ", within: java.library.path: "+ + System.err.println("Located: " + jawtName1 + ": "+libpath+", within: java.library.path: "+ System.getProperty("java.library.path")); found = true; } @@ -2246,7 +2246,7 @@ public class GLContext extends Object System.err.println(" sun.boot.library.path = " + System.getProperty("sun.boot.library.path")); return false; } else if (gljClassDebug && !found) { - System.err.println("Located: " + jawtName0 + ", within: sun.boot.library.path: "+ + System.err.println("Located: " + jawtName0 + ": "+libpath+", within: sun.boot.library.path: "+ System.getProperty("sun.boot.library.path")); found = true; } |