aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/gluegen/runtime/Platform.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-03-29 04:02:08 +0200
committerMichael Bien <[email protected]>2010-03-29 04:02:08 +0200
commit2d76c16b9384d383d3e6a9d7cb727f2591a39228 (patch)
tree329e638a11a29961cb9fdad778e764dd77efa8f5 /src/java/com/jogamp/gluegen/runtime/Platform.java
parent25cc744f6bd5ca97e0ae58fa7e1c35f7b0f3046d (diff)
renamed BufferFactory into Buffers.
Diffstat (limited to 'src/java/com/jogamp/gluegen/runtime/Platform.java')
-rw-r--r--src/java/com/jogamp/gluegen/runtime/Platform.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/gluegen/runtime/Platform.java b/src/java/com/jogamp/gluegen/runtime/Platform.java
index 7c5e97e..8245b51 100644
--- a/src/java/com/jogamp/gluegen/runtime/Platform.java
+++ b/src/java/com/jogamp/gluegen/runtime/Platform.java
@@ -60,7 +60,7 @@ public class Platform {
JAVA_SE = se;
// byte order
- ByteBuffer tst_b = BufferFactory.newDirectByteBuffer(BufferFactory.SIZEOF_INT); // 32bit in native order
+ ByteBuffer tst_b = Buffers.newDirectByteBuffer(Buffers.SIZEOF_INT); // 32bit in native order
IntBuffer tst_i = tst_b.asIntBuffer();
ShortBuffer tst_s = tst_b.asShortBuffer();
tst_i.put(0, 0x0A0B0C0D);