Lines Matching refs:imageIndex
1308 int2 imageIndex;
1309 imageIndex.x = imageAreaOrg.x + get_local_id(0);
1310 imageIndex.y = imageAreaOrg.y + get_local_id(1);
1313 if (imageIndex.x >= imageWidth
1314 || imageIndex.y >= imageHeight) {
1370 …(channel & AlphaChannel)!=0)?ClampToQuantum(sum.w):input[imageIndex.y * imageWidth + imageIndex.x]…
1372 output[imageIndex.y * imageWidth + imageIndex.x] = outputPixel;
1383 int2 imageIndex;
1384 imageIndex.x = get_global_id(0);
1385 imageIndex.y = get_global_id(1);
1391 if (imageIndex.x >= imageWidth
1392 || imageIndex.y >= imageHeight)
1405 inputPixelIndex.y = imageIndex.y - midFilterDimen.y + j;
1408 inputPixelIndex.x = imageIndex.x - midFilterDimen.x + i;
1429 inputPixelIndex.y = imageIndex.y - midFilterDimen.y + j;
1432 inputPixelIndex.x = imageIndex.x - midFilterDimen.x + i;
1459 …(channel & AlphaChannel)!=0)?ClampToQuantum(sum.w):input[imageIndex.y * imageWidth + imageIndex.x]…
1461 output[imageIndex.y * imageWidth + imageIndex.x] = outputPixel;