summaryrefslogtreecommitdiffstats
path: root/src/com/mbien/opencl/CLImage2d.java
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-01-18 15:24:29 +0100
committerMichael Bien <[email protected]>2010-01-18 15:24:29 +0100
commit09ac312a0645bd0d9adff580f29f20382dfbf8c9 (patch)
tree52e121e8c366c797f34008244243dd896cc1e88a /src/com/mbien/opencl/CLImage2d.java
parentc4aeea288271f57b3c8640a8cd4ba87d1c331814 (diff)
introduced CLMemory as superclass for all memory objects.
added CLImage, CLImage2d and CLImage3d.
Diffstat (limited to 'src/com/mbien/opencl/CLImage2d.java')
-rw-r--r--src/com/mbien/opencl/CLImage2d.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/com/mbien/opencl/CLImage2d.java b/src/com/mbien/opencl/CLImage2d.java
new file mode 100644
index 00000000..ca8b58ed
--- /dev/null
+++ b/src/com/mbien/opencl/CLImage2d.java
@@ -0,0 +1,36 @@
+package com.mbien.opencl;
+
+import com.sun.gluegen.runtime.BufferFactory;
+import java.nio.Buffer;
+import java.nio.IntBuffer;
+
+import static com.mbien.opencl.CLException.*;
+
+/**
+ *
+ * @author Michael Bien
+ */
+public final class CLImage2d<B extends Buffer> extends CLImage<B> {
+
+ private CLImage2d(CLContext context, B directBuffer, CLImageFormat format, long id) {
+ super(context, directBuffer, format, id);
+ }
+
+ static <B extends Buffer> CLImage2d<B> createImage(CLContext context, B directBuffer,
+ int width, int height, int rowPitch, CLImageFormat format, int flags) {
+
+ CL cl = context.cl;
+ IntBuffer err = BufferFactory.newDirectByteBuffer(4).asIntBuffer();
+
+ long id = cl.clCreateImage2D(context.ID, flags, format, width, height, rowPitch, directBuffer, err);
+ checkForError(err.get(), "can not create 2d image");
+
+ return new CLImage2d<B>(context, directBuffer, format, id);
+ }
+
+ @Override
+ public <T extends Buffer> CLImage2d<T> cloneWith(T directBuffer) {
+ return new CLImage2d<T>(context, directBuffer, format, ID);
+ }
+
+}