diff options
Diffstat (limited to 'test/com')
-rw-r--r-- | test/com/mbien/opencl/CLBufferTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/com/mbien/opencl/CLBufferTest.java b/test/com/mbien/opencl/CLBufferTest.java index 0c801c30..c62e17c8 100644 --- a/test/com/mbien/opencl/CLBufferTest.java +++ b/test/com/mbien/opencl/CLBufferTest.java @@ -2,7 +2,7 @@ package com.mbien.opencl; import com.mbien.opencl.CLMemory.Mem; import com.mbien.opencl.CLMemory.Map; -import com.jogamp.opengl.util.BufferUtil; +import com.jogamp.gluegen.runtime.Buffers; import java.nio.ByteBuffer; import org.junit.Test; @@ -58,7 +58,7 @@ public class CLBufferTest { CLContext context = CLContext.create(); - ByteBuffer buffer = BufferUtil.newByteBuffer(elements*SIZEOF_INT); + ByteBuffer buffer = Buffers.newDirectByteBuffer(elements*SIZEOF_INT); // fill only first read buffer -> we will copy the payload to the second later. fillBuffer(buffer, 12345); |