diff options
author | Michael Bien <[email protected]> | 2010-03-29 15:35:45 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-29 15:35:45 +0200 |
commit | 273fb3383a04408725ee2bda632af0edf6e8421f (patch) | |
tree | ff1bd5e0bc28dfbd081e2a2c3acc4b343624c7fc /src/jogl/classes/com/jogamp/opengl/util/StreamUtil.java | |
parent | e5d63fe78dfe6760de7997e5303aada7ab8b570e (diff) |
renamed BufferUtil to GLBuffers.
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/util/StreamUtil.java')
-rwxr-xr-x | src/jogl/classes/com/jogamp/opengl/util/StreamUtil.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/StreamUtil.java b/src/jogl/classes/com/jogamp/opengl/util/StreamUtil.java index 83186f6a0..4cf8cb1f0 100755 --- a/src/jogl/classes/com/jogamp/opengl/util/StreamUtil.java +++ b/src/jogl/classes/com/jogamp/opengl/util/StreamUtil.java @@ -59,7 +59,7 @@ public class StreamUtil { public static ByteBuffer readAll2Buffer(InputStream stream) throws IOException { BytesRead bytesRead = readAllImpl(stream); - return BufferUtil.newDirectByteBuffer(bytesRead.data, 0, bytesRead.payloadLen); + return GLBuffers.newDirectByteBuffer(bytesRead.data, 0, bytesRead.payloadLen); } private static BytesRead readAllImpl(InputStream stream) throws IOException { |