Commit 3013b469 authored by Vladimir Bystricky's avatar Vladimir Bystricky

Add check for depths of destination and source image. Fix warning C4127.

parent af6134b4
......@@ -714,7 +714,10 @@ static bool ocl_boxFilter( InputArray _src, OutputArray _dst, int ddepth,
if (BLOCK_SIZE < kernelWorkGroupSize)
return false;
tryWorkItems = kernelWorkGroupSize;
#pragma warning( push )
#pragma warning( disable : 4127 )
} while (true);
#pragma warning( pop )
_dst.create(sz, CV_MAKETYPE(ddepth, cn));
UMat dst = _dst.getUMat();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment