diff options
author | Michael Bien <[email protected]> | 2010-03-16 18:05:06 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-16 18:05:06 +0100 |
commit | 919d8e9f992c07ab18ddd6d192d6747e8d7aa40b (patch) | |
tree | 8a92dc8adb52758e1f09f2e87632e6f3f6ac695f /src/com/mbien/opencl/CLImage.java | |
parent | 81b94f83cb76128c481d21134c3d462590db23d0 (diff) |
even more utility methods and general awesomeness.
Diffstat (limited to 'src/com/mbien/opencl/CLImage.java')
-rw-r--r-- | src/com/mbien/opencl/CLImage.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/mbien/opencl/CLImage.java b/src/com/mbien/opencl/CLImage.java index 449ec703..883a4781 100644 --- a/src/com/mbien/opencl/CLImage.java +++ b/src/com/mbien/opencl/CLImage.java @@ -18,12 +18,12 @@ public abstract class CLImage<B extends Buffer> extends CLMemory<B> { public final int width; public final int height; - protected CLImage(CLContext context, B directBuffer, CLImageFormat format, int width, int height, long id) { - this(context, directBuffer, format, new CLImageInfoAccessor(context.cl, id), width, height, id); + protected CLImage(CLContext context, B directBuffer, CLImageFormat format, int width, int height, long id, int flags) { + this(context, directBuffer, format, new CLImageInfoAccessor(context.cl, id), width, height, id, flags); } - protected CLImage(CLContext context, B directBuffer, CLImageFormat format, CLImageInfoAccessor accessor, int width, int height, long id) { - super(context, directBuffer, id); + protected CLImage(CLContext context, B directBuffer, CLImageFormat format, CLImageInfoAccessor accessor, int width, int height, long id, int flags) { + super(context, directBuffer, id, flags); this.imageInfo = accessor; this.format = format; this.width = width; |