summaryrefslogtreecommitdiffstats
path: root/src/junit
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-03-29 04:51:49 +0200
committerSven Gothel <[email protected]>2010-03-29 04:51:49 +0200
commit69fe372b874d913e2d1c27f1d103e1fced668ecf (patch)
treecf402337903ba3d02bbab628f2f82a23908a5f11 /src/junit
parent2138fc787c1e497be7f373aa68b3f751c955008f (diff)
parent2d76c16b9384d383d3e6a9d7cb727f2591a39228 (diff)
Resolved conflicts
Diffstat (limited to 'src/junit')
-rw-r--r--src/junit/com/jogamp/gluegen/test/junit/BaseTest1.java8
-rw-r--r--src/junit/com/jogamp/gluegen/test/junit/Test1p1JavaEmitter.java2
-rw-r--r--src/junit/com/jogamp/gluegen/test/junit/Test1p2ProcAddressEmitter.java2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/junit/com/jogamp/gluegen/test/junit/BaseTest1.java b/src/junit/com/jogamp/gluegen/test/junit/BaseTest1.java
index f030459..c53d142 100644
--- a/src/junit/com/jogamp/gluegen/test/junit/BaseTest1.java
+++ b/src/junit/com/jogamp/gluegen/test/junit/BaseTest1.java
@@ -32,7 +32,7 @@
package com.jogamp.gluegen.test.junit;
-import com.jogamp.gluegen.runtime.BufferFactory;
+import com.jogamp.gluegen.runtime.Buffers;
import com.jogamp.gluegen.runtime.PointerBuffer;
import com.jogamp.gluegen.runtime.Int64Buffer;
import java.nio.*;
@@ -144,11 +144,11 @@ public class BaseTest1 {
Int64Buffer lb = Int64Buffer.allocateDirect(1);
lb.put(0, 10);
- ByteBuffer bb2 = BufferFactory.newDirectByteBuffer(BufferFactory.SIZEOF_LONG);
+ ByteBuffer bb2 = Buffers.newDirectByteBuffer(Buffers.SIZEOF_LONG);
Int64Buffer bb2L = Int64Buffer.wrap(bb2);
bb2L.put(0, 100);
- IntBuffer ib1 = BufferFactory.newDirectByteBuffer(BufferFactory.SIZEOF_INT * BindingTest1.ARRAY_SIZE).asIntBuffer();
+ IntBuffer ib1 = Buffers.newDirectByteBuffer(Buffers.SIZEOF_INT * BindingTest1.ARRAY_SIZE).asIntBuffer();
for(i=0; i<BindingTest1.ARRAY_SIZE; i++) {
ib1.put(i, 1000);
}
@@ -237,7 +237,7 @@ public class BaseTest1 {
i = binding.stringArrayRead(new String[] { "1234", "5678", "9a" }, 3);
Assert.assertTrue("Wrong result: "+i, 10==i);
- ByteBuffer bb3 = BufferFactory.newDirectByteBuffer(BufferFactory.SIZEOF_INT * 3);
+ ByteBuffer bb3 = Buffers.newDirectByteBuffer(Buffers.SIZEOF_INT * 3);
IntBuffer ib = bb3.asIntBuffer();
ib.put(0, 1);
ib.put(1, 2);
diff --git a/src/junit/com/jogamp/gluegen/test/junit/Test1p1JavaEmitter.java b/src/junit/com/jogamp/gluegen/test/junit/Test1p1JavaEmitter.java
index 0438a76..54d82f9 100644
--- a/src/junit/com/jogamp/gluegen/test/junit/Test1p1JavaEmitter.java
+++ b/src/junit/com/jogamp/gluegen/test/junit/Test1p1JavaEmitter.java
@@ -34,7 +34,7 @@ package com.jogamp.gluegen.test.junit;
import com.jogamp.gluegen.test.junit.impl.BindingTest1p1Impl;
-import com.jogamp.gluegen.runtime.BufferFactory;
+import com.jogamp.gluegen.runtime.Buffers;
import com.jogamp.gluegen.runtime.PointerBuffer;
import java.nio.*;
import java.io.File;
diff --git a/src/junit/com/jogamp/gluegen/test/junit/Test1p2ProcAddressEmitter.java b/src/junit/com/jogamp/gluegen/test/junit/Test1p2ProcAddressEmitter.java
index 53ea5c8..3bf90e9 100644
--- a/src/junit/com/jogamp/gluegen/test/junit/Test1p2ProcAddressEmitter.java
+++ b/src/junit/com/jogamp/gluegen/test/junit/Test1p2ProcAddressEmitter.java
@@ -34,7 +34,7 @@ package com.jogamp.gluegen.test.junit;
import com.jogamp.gluegen.test.junit.impl.BindingTest1p2Impl;
-import com.jogamp.gluegen.runtime.BufferFactory;
+import com.jogamp.gluegen.runtime.Buffers;
import com.jogamp.gluegen.runtime.PointerBuffer;
import com.jogamp.gluegen.runtime.NativeLibrary;
import com.jogamp.gluegen.runtime.DynamicLookupHelper;