diff options
author | Michael Bien <[email protected]> | 2011-04-05 21:46:27 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-04-05 21:46:27 +0200 |
commit | 9317b6018e7f4e95437204d93d45e4d83daac790 (patch) | |
tree | da4b17decb5f379fda4235a53da9ddf438c1e4fa | |
parent | 907e4a1f9077f4ce5d2a8f98b99816f752ce30ce (diff) |
made 3d version of putCopyImage less restrictive, its now possible to copy from 2d to 3d and from 3d to 2d images.
-rw-r--r-- | src/com/jogamp/opencl/CLCommandQueue.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/CLCommandQueue.java b/src/com/jogamp/opencl/CLCommandQueue.java index 2c64b1f7..eed004e4 100644 --- a/src/com/jogamp/opencl/CLCommandQueue.java +++ b/src/com/jogamp/opencl/CLCommandQueue.java @@ -818,7 +818,7 @@ public class CLCommandQueue extends CLObject implements CLResource { /** * Calls {@native clEnqueueCopyImage}. */ - public CLCommandQueue putCopyImage(CLImage3d<?> srcImage, CLImage3d<?> dstImage, + public CLCommandQueue putCopyImage(CLImage<?> srcImage, CLImage<?> dstImage, int srcOriginX, int srcOriginY, int srcOriginZ, int dstOriginX, int dstOriginY, int dstOriginZ, int rangeX, int rangeY, int rangeZ, CLEventList condition, CLEventList events) { |