summaryrefslogtreecommitdiffstats
path: root/src/demos/util/MD2.java
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2003-07-03 00:09:30 +0000
committerKenneth Russel <[email protected]>2003-07-03 00:09:30 +0000
commitfd3d6d767cb0ef079e430545d27760f91c182758 (patch)
tree8687cb1a3374f4fbb61df374fd5d6c702eaf5ee0 /src/demos/util/MD2.java
parent557c3213e11691f0b6bf3d0de5ac8d0003ccd385 (diff)
Added pbuffer support to JOGL on X11; HWShadowmapsSimple and
ProceduralTexturePhysics demos are now working on Linux with the appropriate hardware. Moved core GLX routines out of the public GLX interface; this allowed XVisualInfo (and the new GLXFBConfig) to be removed from the public API. Added support to GlueGen for returning arrays of pointers as arrays of StructAccessors in Java and for choosing the typedef name for a pointer-to-struct if the struct itself does not have a typedef name. Added support to GLEmitter to emit ProcAddressTables under arbitrary names and to support arbitrary mechanisms for fetching those tables. Made GLU (on all platforms) and GLX (on X11) be dynamically linked. Refactored ProcAddressTable filling to be mostly shared code. Tested changes on Linux, Mac OS X and Windows. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@9 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/util/MD2.java')
-rw-r--r--src/demos/util/MD2.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demos/util/MD2.java b/src/demos/util/MD2.java
index 25ba88f..d58b953 100644
--- a/src/demos/util/MD2.java
+++ b/src/demos/util/MD2.java
@@ -493,7 +493,7 @@ public class MD2 {
pos += numRead;
}
avail = in.available();
- } while (numRead >= 0);
+ } while (avail > 0 && numRead >= 0);
ByteBuffer buf = ByteBuffer.allocateDirect(pos);
buf.put(data, 0, pos);
buf.rewind();