From 6bb8afde96423f456adc2a889c5fb26f04ed907f Mon Sep 17 00:00:00 2001 From: Vladimir Dudnik Date: Tue, 11 Aug 2015 16:01:05 +0300 Subject: [PATCH] fixed typo in OpenCLAllocator.upload method (wrong step used) --- modules/core/src/ocl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/ocl.cpp b/modules/core/src/ocl.cpp index 2c4bf923fb..c51f90ad69 100644 --- a/modules/core/src/ocl.cpp +++ b/modules/core/src/ocl.cpp @@ -5110,7 +5110,7 @@ public: } else { - AlignedDataPtr2D alignedPtr((uchar*)srcptr, new_sz[1], new_sz[0], new_dststep[0], CV_OPENCL_DATA_PTR_ALIGNMENT); + AlignedDataPtr2D alignedPtr((uchar*)srcptr, new_sz[1], new_sz[0], new_srcstep[0], CV_OPENCL_DATA_PTR_ALIGNMENT); uchar* ptr = alignedPtr.getAlignedPtr(); CV_Assert(clEnqueueWriteBufferRect(q, (cl_mem)u->handle, CL_TRUE,