aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2014-04-07 15:12:50 -0500
committerWade Walker <[email protected]>2014-04-07 15:12:50 -0500
commit65144f3de56b4fc47262399d0b3bcb0fa5f3feee (patch)
tree9a7800c1f614957fb1c87712103637fd63df9929 /src/com/jogamp
parent7a7f87a1fc7419f758ba9b134764ae544fd6d566 (diff)
Fix transposed arguments in putCopyBufferRect
Fixes transposed arguments in CLCommandQueue:putCopyBufferRect.
Diffstat (limited to 'src/com/jogamp')
-rw-r--r--src/com/jogamp/opencl/CLCommandQueue.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/jogamp/opencl/CLCommandQueue.java b/src/com/jogamp/opencl/CLCommandQueue.java
index b68c4cd0..7d359a08 100644
--- a/src/com/jogamp/opencl/CLCommandQueue.java
+++ b/src/com/jogamp/opencl/CLCommandQueue.java
@@ -421,7 +421,7 @@ public class CLCommandQueue extends CLObjectResource {
putCopyBufferRect( src, dest, srcOriginX, srcOriginY, 0,
destOriginX, destOriginY, 0,
rangeX, rangeY, 1,
- srcRowPitch, srcSlicePitch, destSlicePitch, destRowPitch, condition, events);
+ srcRowPitch, srcSlicePitch, destRowPitch, destSlicePitch, condition, events);
return this;
}